Functional programming is a programming paradigm which primarily uses functions as means for building abstractions and expressing computations that comprise a computer program.

learn more… | top users | synonyms (1)

0
votes
1answer
28 views

Where's the functional functions that manipulate lists and maps in jdk8

I've downloaded JDK8.0 early access release few days ago (file name: jdk-8-ea-bin-b82-linux-x64-21_mar_2013.tar.gz) I can find java.util.function package. (only contains Interfaces), and it is do ...
0
votes
2answers
53 views

Does Google Dart language support functional programming?

Does Google Dart language allow for functional programming to occur. Can functions be stored as variables (references). Functional currying. Lazy parameters. (not so important to me). Clearly Dart ...
1
vote
3answers
36 views

Custom function for length of a list in Scheme?

My lecturer has provided the following code: (define (length list) (cond (( null ? list) 0 ) (( atom ? list) 1 ) ( else ( + 1 ( length (cdr list)))) However it wouldn't compile and Scheme kept ...
0
votes
1answer
90 views

How to make a functional language compiler

I am looking into writing a language and a compiler for it as a summer project, and am having a hard time finding information on how to use a parse tree or BNF/EBNF to program a compier. The overall ...
0
votes
2answers
39 views

Passing multiple variables (image->color-list) as a procedure argument RACKET

I am trying to create a procedure which will accept two colour-lists. Because this procedure is within another procedures(local). I need to convert image->color-list as I am passing the arguments. I ...
2
votes
2answers
40 views

How to express let* as a lambda expression (not the regular let)

I have a scheme related question, how can we implement let* as a lambda expression. To be more precise, I am not wondering about the "regular" let, but the let with * which lets us use one let ...
4
votes
2answers
114 views

Why do these folds stop at the head/tail?

I'm reading learnyouahaskell.com and currently investigating folds. In the book there are these examples: maximum' :: (Ord a) => [a] -> a maximum' = foldr1 (\x acc -> if x > acc then x ...
3
votes
1answer
80 views

“Mathematical state” with functional languages?

I've read some of the discussions here, as well as followed links to other explanations, but I'm still not able to understand the mathematical connection between "changing state" and "not changing ...
2
votes
3answers
83 views

Apply a series of functions to some arguments

I'm after something a little more elegant than this. What is the most elegant way to implement F such that: F(a,b,c,d,e) -> lambda args: a(b(c(d(e(*args)))))
0
votes
1answer
23 views

Xslt size of token array (tokenize, number of tokens)

Is there a way to getting the size of a token array after having run tokenize($text, '\s+')? Without running a loop. I miss Java in these cases where I can just run list.size(). Cheers Answer ...
0
votes
2answers
47 views

Understanding the apply method example in functional programming in Eloquent JavaScript

I am reading the Eloquent JavaScript and I got to Functional programming (chapter 6). I am confused by the following example: show(Math.min.apply(null, [5, 6])); function negate(func) { return ...
-2
votes
0answers
31 views

Create a Visual Basic Program with EMIRPS [closed]

Create a VIsual Basic Program - Code User Requirements: An Emirp is a prime number whose reversal is also a prime. Write a visual Basic program that computers and displays the number of emirps ...
0
votes
4answers
55 views

How to test if Action<…> is null? [closed]

Suppose I have a function that looks like this: public void DoSomething(Action<object> something) { something(getObject()); } If something is null, then this code will raise a ...
1
vote
1answer
52 views

call values that have a common key in Lua

1Is there a way to write a function to multiply two values based on only the fact that they have the same key? Here is some psudocode for what I have in mind: operation = {a=12, b=7, c=31} operator1 ...
1
vote
1answer
56 views

Call function for all possible combinations of vectors

I have been using Clojure for the past week since I continued a project of a colleague of mine. We are using Clojure to generate some files. I am trying to refactor some code since he had to do it ...
0
votes
2answers
68 views

How can I handle Account Number in erlang?

I'm making Bank Account Management system using ETS which will also hold current and savings account, I'm unable to figure it out that how can I generate and retain the series of account numbers since ...
0
votes
1answer
45 views

can I have a nested lambda expression stored in a Dictionary?

I'd like to parse a string into a lambda expression in C#, for example, parse "lt 5" to x => x < 5 so I can use it as the argument of Enumerable.Where: static void Main(string[] args) { ...
1
vote
2answers
90 views

Are map() and reduce() appropriate for concurrent processing in Go?

Coming from a python background, and just starting with Go, I found myself looking for the equivalent of the map() and reduce() functions in Go. I didn't find them, so fell back on for loops. For ...
-2
votes
0answers
42 views

Regarding a functional equation [closed]

I'll appreciate you if you can help me solve this problem? the result is a function with respect to u.
2
votes
2answers
85 views

What happens underneath append function?

I got an implementation for append function in OCaml, but it seems confused to me let rec append = function | [] -> fun y -> y | h :: t -> fun y -> h :: (append t y) What is the purpose ...
3
votes
1answer
50 views

Looking for a fold-like idiom

So my friend presented a problem for me to solve, and I'm currently writing a solution in functional-style Python. The problem itself isn't my question; I'm looking for a possible idiom that I can't ...
-5
votes
1answer
48 views

Which of the following implementations is faster?

What I'm trying to do is fill the values of a specific matrix using unknown variables. Here's the first implementation: #define PHI(I,J,K) phi[xlength*ylength*(I)+xlength*(J)+(K)] //Macro that calls ...
0
votes
2answers
32 views

How to refactor this array comparison with underscore.js?

Can this code be refactored in a more functional/underscore style, mainly the part that checks for the presence of addedEvents in actualEvents? describe 'when removing', -> it 'should remove ...
0
votes
2answers
52 views

Two tables with different names and using the single record cannot be created, how can I implent this?

I'm trying to create two tables using the same record, with two different names, but it creates only any one of them or sometimes throws an exception. Following is the code from my record file: ...
5
votes
3answers
102 views

Pattern matching functions in OCaml

Can everyone explain to me this piece of code ? let safe_division n = function | 0 -> failwith "divide by 0" | m -> n / m When I excute safeDiv 3 0 , what is the m and n in this case ? In ...
1
vote
1answer
46 views

Python: compose list from nested iterators

I have a list of tuples that I need to expand it by adding two elements, each of them comes from a list. So I have [(1, 2, 3)] and two iterators it1 = (i for i in ['a1', 'a2']) and it2 = (i for i in ...
-1
votes
0answers
77 views

Python in functional programming [duplicate]

I am a newbie to the concept of Functional Programming; and yet to read through it completely. But the one thing that strikes me is that nowhere does Python get mentioned as one of the languages ...
1
vote
1answer
76 views

How to used Cons operator?

Basically the function will take one parameter as a character, number and check whether it is inside the List or not ? let rec (member: a -> List a -> Bool) x = | [] -> False | Cons y ys ...
1
vote
1answer
84 views

Haskell function composition - wrongly inferred type

In the following Haskell code, the function typeError doesn't typecheck. wrap x = [x] listf :: [[a]] -> [[a]] listf = id typeCheck :: [a] -> [[a]] typeCheck x = listf (wrap x) typeError :: ...
2
votes
3answers
115 views

Implementing mutable methods in Scala classes

I am new to Scala. How do I implement methods in classes? I have defined a trait which look like this: trait Node extends Component{ val label:Int val inputEdges:List[Edge] = List[Edge]() val ...
0
votes
1answer
21 views

How to send a packet from Server to Client (from a function) Ejabbered

I am looking for a function. A global function that might do me the work of sending the stream packet to the client. in function A (Server, From, attrs)-> I construct the xml element PacketToBeSent ...
-5
votes
0answers
114 views

The right step to begin: Scala vs OCaml [closed]

This question could seem stupid, 'couse i haven't so much experience in functional programming. I was wondering which is the best language between OCaml and Scala. I already done something in OCaml, ...
0
votes
1answer
130 views

Haskell Time Issue

it is my second question about haskell and i thought my algorhythm is not bad and it gives faster results in c++ and python and there is some problem at haskell it cant give me 10^25 (maybe it gives ...
1
vote
2answers
53 views

convert timestamps to intervals

I wrote a scala function that converts list of timestamps to intervals def toIntervals(timestamps: List[String]) = { def helper(timestamps: List[String], accu: List[Long]): List[Long] = { ...
-1
votes
2answers
62 views

SICP example doesn't work on Racket

I am trying an example on Chapter 4 of SICP (part of writing the LISP interpreter) (define (definition-value exp) (if (symbol? (cadr exp)) (caddr exp) (make-lambda ...
0
votes
3answers
105 views

Haskell - what is wrong with this function?

i am trying to compute the harmonic series with the function below. But there's a type error and not quite sure what it mean? another question, why [5..1] would gives an empty list? sumHR = foldr ...
2
votes
4answers
67 views

Functional way to stack list of 2d matrices into 3d matrix

After a clever lapply, I'm left with a list of 2-dimensional matrices. For example: set.seed(1) test <- replicate( 5, matrix(runif(25),ncol=5), simplify=FALSE ) > test [[1]] [,1] ...
0
votes
0answers
48 views

make-lambda function alternative in racket

I am learning scheme by reading SICP. One function in SICP measured is (make-lambda ...) I am using Racket as the scheme interpreter. However Racket doesn't have make-lambda function built in. ...
0
votes
5answers
46 views

Functionally prepending an array element

Is there a functional way to prepend an element to an array. Something like: [1,2].prepend(3); // should return [3, 1, 2] Kindly notice that a reference to the result array is returned. The reason ...
1
vote
1answer
36 views

Executable specification ..? how executable specifications can be used for rapid prototyping?

After reading these books Bertrand Meyer, Introduction to the Theory of Programming Languages & J.D. Ullman, Elements of ML Programming I have read some papers also, tried to find on ...
0
votes
2answers
121 views

C++11 Most elegant way to implement Pipe and Filter Pattern

I want to create a Pipe and Filter based data handler that should manipulate incoming data sets like so, but not neccessarily limited to: source pipe(could be a data set from a db) <-sink-source-> ...
0
votes
1answer
36 views

Functional Menu with PhP .current [closed]

I need help making a top navigation menu for my website. I need the top menu to change the main frame of my website, and change its .css style when it is clicked. I've been reading a lot and it seems ...
3
votes
2answers
48 views

File seeking with SML Basis

Is there a way, using the SML Basis library, to open a file at a specific position? That is, use an operating system call to change the position, rather than scan through the file and throw away the ...
1
vote
0answers
173 views

Can every recursive function be rewritten using tail calls? [duplicate]

Can every recursive function be rewritten using tail calls? If not, what are examples of recursive functions for which this can't be done?
2
votes
2answers
40 views

Rewrite cycle in functional style

I've created simple function: it has array as input and id. Function suppose to take all elements 'before' given idea. function takeBefore(stars, id) { var taken = []; for(var i = ...
3
votes
2answers
151 views

How can I convert this binary recursive function into a tail-recursive form?

There is a clear way to convert binary recursion to tail recursion for sets closed under a function, i.e. integers with addition for the Fibonacci sequence: (Using Haskell) fib :: Int -> Int fib ...
1
vote
1answer
58 views

How to create dynamically sized HTML table?

I have a Perl CGI script. I would like to make a dynamic, appropriately-sized table based on query information from a simple HTML form: http://jsfiddle.net/wBgBZ/4/. I wanted to use HTML::Table but ...
1
vote
1answer
29 views

How to display multiple entries from an HTML form?

I have a Perl CGI script. I'm trying to display the user entries on every line but it's not working. Here's what I have so far: #!/usr/bin/perl use strict; use warnings; use CGI qw( :standard); ...
3
votes
1answer
82 views

Reducing a sequence into a shorter sequence while calling a function on each adjacent element

I've got a function that looks at two of these objects, does some mystery logic, and returns either one of them, or both (as a sequence). I've got a sequence of these objects [o1 o2 o3 o4 ...], and ...
2
votes
1answer
52 views

Replacing data.table observations; vector approach

I would like to replace select values in a data.table variable with a new set of values. ### Vector of old values I would like to replace char <- c('one', 'two', 'three', 'four', 'five', 'six', ...

1 2 3 4 5 79