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
2answers
33 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 ...
-1
votes
0answers
18 views

Regarding a functional equation

I'll appreciate you if you can help me solve this problem? the result is a function with respect to u.
4
votes
3answers
78 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 ...
0
votes
2answers
23 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 ...
37
votes
4answers
4k views

What constitutes a fold for types other than list?

Consider a single-linked list. It looks something like data List x = Node x (List x) | End It is natural to define a folding function such as reduce :: (x -> y -> y) -> y -> List x ...
-1
votes
0answers
73 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 ...
52
votes
14answers
19k views

Useful code which uses reduce() in python

Do anyone here have any useful code which uses reduce() function of python? Is there any code other than the usual + and * that we see in the examples? Refer Fate of reduce() in Python 3000 by GvR
276
votes
9answers
55k views

What is (functional) reactive programming?

I've read the Wikipedia article on reactive programming. I've also read the small article on functional reactive programming. The descriptions are quite abstract. What does functional reactive ...
0
votes
2answers
67 views

Using a callback to customize a class instead of subclassing

Functionally identical are using a callback to customize class behavior, and using a virtual function and inheritance. But I'm finding using function objects is slightly more flexible in my own work. ...
28
votes
4answers
3k views

What is the difference between Scala's case class and class?

I searched in Google to find the differences between a case class and a class. Everyone mentions that when you want to do pattern matching on the class, use case class. Otherwise use classes and also ...
16
votes
5answers
998 views

What is so special about Monads?

A monad is a mathematical structure which is heavily used in (pure) functional programming, basically Haskell. However, there are many other mathematical structures available, like for example ...
3
votes
1answer
46 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 ...
-4
votes
1answer
41 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
1answer
25 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: ...
153
votes
3answers
11k views

What does “coalgebra” mean in the context of programming?

I have heard the term "coalgebras" several times in functional programming and PLT circles, especially when the discussion is about objects, comonads, lenses, and such. Googling this term gives pages ...
8
votes
6answers
760 views

what's a good persistent collections framework for use in java?

By persistent collections I mean collections like those in clojure. For example, I have a list with the elements (a,b,c). With a normal list, if I add d, my original list will have (a,b,c,d) as its ...
36
votes
21answers
7k views

Why is lazy evaluation useful?

I have long been wondering why lazy evaluation is useful. I have yet to have anyone explain to me in a way that makes sense; mostly it ends up boiling down to "trust me". Note: I do not mean ...
1
vote
1answer
40 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 ...
0
votes
1answer
69 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 ...
2
votes
3answers
102 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
18 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 ...
-1
votes
2answers
56 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 ...
1
vote
1answer
82 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 :: ...
0
votes
1answer
124 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 ...
-5
votes
0answers
92 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, ...
8
votes
2answers
488 views

The math behind 1.0999999999999999 in Haskell [duplicate]

Possible Duplicate: Haskell ranges and floats Why does the following output occur in haskel: [0.1,0.3..1] [0.1,0.3,0.5,0.7,0.8999999999999999,1.0999999999999999] What is the math behind ...
1
vote
2answers
48 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] = { ...
47
votes
2answers
5k views

Functional lenses

Could someone explain functional lenses to me? It's a surprisingly difficult subject to google for and I haven't made any progress. All I know is that they provide similar get/set functionality than ...
88
votes
11answers
6k views

In Functional Programming, what is a functor?

I've come across the term 'Functor' a few times while reading various articles on functional programming, but the authors typically assume the reader already understands the term. Looking around on ...
2
votes
4answers
65 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
3answers
96 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 ...
1
vote
1answer
34 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
0answers
46 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
43 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 ...
26
votes
4answers
8k views

difference between foldLeft and reduceLeft in Scala

i have learned the basic difference between foldLeft and reduceLeft foldLeft: initial value has to be passed reduceLeft: takes first element of the collection as initial value throws exception ...
3
votes
2answers
139 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 ...
0
votes
2answers
105 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
31 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
47 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 ...
262
votes
34answers
24k views

What is a monad?

Having briefly looked at Haskell recently I wondered whether anybody could give a brief, succinct, practical explanation as to what a monad essentially is? I have found most explanations I've come ...
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 = ...
2
votes
3answers
193 views

Mapping a FunctionalJava Option<Type> with Hibernate

I have a hibernate-mapped Java object, JKL, which is full of a bunch of normal hibernate-mappable fields (like strings and integers). I'm added a new embedded field to it (which lives in the same ...
1
vote
0answers
170 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?
-1
votes
3answers
88 views

List difference function

Does any existing programming language, particularly in the Lisp or ML families, have a library function to calculate list difference in the sense of 'first until start of second' - I'm not sure ...
65
votes
10answers
2k views

What are the most interesting equivalences arising from the Curry-Howard Isomorphism?

I came upon the Curry-Howard Isomorphism relatively late in my programming life, and perhaps this contributes to my being utterly fascinated by it. It implies that for every programming concept there ...
1
vote
1answer
53 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
28 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
78 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 ...
22
votes
3answers
3k views

Does Scala have guards?

I started learning scala a few days ago and when learning it, I am comparing it with other functional programming languages like (Haskell, Erlang) which I had some familiarity with. Does Scala has ...
2
votes
2answers
60 views

scheme pattern checking if it is a number

I am a scheme beginner and I am wondering how to explain this piece of scheme code? Looks so preculiar! (define (calc2 exp) (match exp [(? number? x) x])) ...

1 2 3 4 5 78