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)

1
vote
2answers
37 views

Functions returning functions aproach in JavaScript

i have almost a half year since i continuously learn javascript and started to use more seriously. JS has the C like syntax and other parts like closures, dynamic typing, optional paramates, etc. ...
3
votes
4answers
147 views

Haskell - Maybe arithmetic

I have been asked to implement a function which uses the following profile: maybe_divide :: Maybe Integer -> Maybe Integer -> Maybe Integer and responds in the following manner: > ...
9
votes
2answers
276 views

Function Overhead in Functional Languages like Haskell or in Hybrids like Scala [closed]

Coming from imperative languages like Python, Javascript and Java, I was very often reading about function overhead and why to avoid map from a performance perspective. Obviously these are no ...
0
votes
2answers
58 views

Binary trees as innested pairs

I'm trying to represent a generic binary tree as a pair. I'll use the SML syntax as example. This is my btree type definition: datatype btree = leaf | branch of btree*btree; So, I'd like to write ...
3
votes
3answers
92 views

Idiomatic way to use for, while still maintaining high performance

I have a map that is sorted by its keys which contains data like this: (def h {50 Text1 70 Text2 372 Text1 391 Text2 759 Text1 778 Text2 }) The map is sorted by Keys. ...
3
votes
2answers
85 views

What are the advantages of Cons?

Many functional programming languages support and recommend the data constructor Cons (for lists like (1, (2, (3))), such as Haskell and Scala. But what are its advantages? Such lists can neither be ...
-1
votes
1answer
44 views

Persistent data structures: a persistent index? [closed]

Functional programming utilizes immutable data. When you modify something you reinstantiate "the world" reusing the previous incarnation in as much as possible for your augmented world. I am ...
1
vote
1answer
102 views

Understanding Prime Test

I have this Haskell script: prime :: Integer -> Bool prime 1 = False prime n = [ x | x <- [2..n-1], n `mod` x == 0 ] == [] What does the first x in the last line stand for? Why can I ...
0
votes
1answer
127 views

(quick)Haskell - How to filter Results to display correctly [closed]

I have a list of movies in a Database. type Database = [Film] type Title = String type Actor = String type Cast = [Actor] type Fan = String type Fans = [Fan] type Year = Int type Period = (Year, ...
2
votes
3answers
140 views

The functional way to do “max” (with recursion / without mutable vars)

Finding a max in an unsorted array with imperative code is quite straight forward e.g. in Java (I'm sure it can be written better, only used for illustration purposes) public class Main { public ...
2
votes
3answers
91 views

Clojure: What is wrong with my implementation of flatten?

I've been working through problems on 4clojure today, and I ran into trouble on #28, implementing flatten. There are a couple of definite problems with my code. (fn [coll] ((fn flt [coll res] ...
3
votes
1answer
62 views

Correct use of a fold or reduce function to long-to-wide data in python or javascript?

Trying to learn to think like a functional programmer a little more---I'd like to transform a data set with what I think is either a fold or a reduce operation. In R, I would think of this as a ...
5
votes
2answers
66 views

Does `string` in OCaml support UTF-8?

Does the type string in OCaml support utf8? Or what library I should use for utf8 string?
5
votes
4answers
80 views

What does `[< >]` mean in OCaml?

I have seen some source code having let rec parse_document = parser | [< len = parse_int32; st; >] -> parse_list [] (ES.take_int32 len st) | [< >] -> malformed ...
0
votes
1answer
59 views

Haskell - testDatabase is applied to one argument but its type “database” has none. [closed]

My database should contain up to 25 of these data entries. At the moment, i only have these but I'm receiving an error message of: testDatabase is applied to one argument but its type "database" ...
0
votes
2answers
88 views

Haskell - lacks accompanying binding,

I'm currently completing a project to create a film rating system / database using Haskell. I'm trying to add the functionality that allows the user to become a fan of a film. I have: isFan :: ...
1
vote
1answer
120 views

Strategy to handle mutability in functional code

I've recently studied the code of FParsec the F# port of Haskell Parsec parser combinators library. FParsec public API is completely functional, but it relies on support library FParsecCS that relies ...
5
votes
1answer
188 views

Functional Programming: a look at program design from the top down? [closed]

I've scoured the internet trying to learn as much about FP as possible to see how well the paradigm suits me. All the examples I find are minimally helpful because they talk about FP in the small. I ...
6
votes
1answer
75 views

Why is there a let in OCaml's List.map?

In OCaml 3.12.1, List.map is written as follows: let rec map f = function [] -> [] | a::l -> let r = f a in r :: map f l I'd expect that last line to be written as | a::l -> f a :: ...
8
votes
2answers
187 views

An example of a type with kind * -> * which cannot be an instance of Functor

I'm very much a Haskell novice, so apologies if the answer is obvious, but I'm working through the Typeclassopedia in an effort to better understand categories. When doing the exercises for the ...
2
votes
1answer
61 views

Choosing between side effects and good API design in functional programming with scala

I'm porting to scala a java application I wrote as a learning exercise. Part of it is communicating with another machine using a protocol directly over TCP. This protocol has 2 layers (Application and ...
2
votes
4answers
93 views

Programming without if-statements? [closed]

I remember some time (years, probably) ago I read on Stackoverflow about the charms of programming with as few if-tests as possible. This question is somewhat relevant but I think the stress was on ...
1
vote
2answers
82 views

Which term is used to describe functions with multiple “modes”?

Clojure's range function, for example, has four modes: Usage: (range) (range end) (range start end) (range start end step) Returns a lazy seq of nums from start (inclusive) to ...
3
votes
3answers
54 views

Functional Programming: Printing to JS console in Chrome

I'm implementing functional programming from Eloquent Javascript to my JS console in Google Chrome. There's a function that loops through each element in an array and performs the given action in the ...
8
votes
6answers
262 views

Finding unique (as in only occurring once) element haskell

I need a function which takes a list and return unique element if it exists or [] if it doesn't. If many unique elements exists it should return the first one (without wasting time to find others). ...
2
votes
1answer
167 views

Are F# quotations useful for anything? [closed]

I thought that I would be able to use quotations to accomplish what I'm trying to do (create a tree of expressions which I can store in a DB and execute later on). Much to my dismay, however, I've ...
4
votes
2answers
81 views

itertools or functools for find-replace list in python

I have a set of strings that are sometimes invalid that I'd like to replace with particular better strings. I've been playing with functools and itertools and would like to try applying these to the ...
2
votes
2answers
75 views

What is the closest match to this Clojure map/apply expression, in Rebol?

While comparing functional expressions in Clojure side-by-side with Rebol, I happened onto this expression from the examples of apply used in combination with map, at clojure-docs.org: user=> (map ...
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 ...
2
votes
1answer
103 views

scanr1 in Scala?

In Scala, is there a scanr1, similar to Haskell's scanr1 which takes no zero-element and produces the intermediate results that would otherwise be created by an in-order reduce operation?
21
votes
4answers
513 views

How to concisely express function iteration?

Is there a concise, idiomatic way how to express function iteration? That is, given a number n and a function f :: a -> a, I'd like to express \x -> f(...(f(x))...) where f is applied n-times. ...
4
votes
1answer
87 views

How do you chain an arbitrarily long series of atomic parsers using applicatives?

Let's say I have this parser type: newtype Parser a = Parser { runParser :: String -> Maybe (a, String) } And this atomic parser unit: satisfy :: ( Char -> Bool ) -> Parser Char satisfy g ...
1
vote
2answers
71 views

Clojure way of reading large files and transforming data therein

I am processing a Subrip subtitles file which is quite large and need to process it one subtitle at a time. In Java, to extract the subtitles from file, I would write a method with following ...
5
votes
1answer
127 views

Clojure head retention

I'm reading Clojure Programming book by O'Reilly.. I came over an example of head retention. First example retains reference to d (I presume), so it doesnt get garbage collected: (let [[t d] ...
10
votes
3answers
208 views

What does uncurry ($) do?

I'm doing some excersises where I have to add a function's type and explain what it does. I'm stuck with this: phy = uncurry ($) The type, according to GHCi is phy :: (a -> b, a) -> b. My ...
1
vote
1answer
63 views

How to implement counting sort (O(n)) using list in OCaml?

Counting sort uses array and can have O(n) performance if the numbers being sorted are within a known range. But is it possible to implement counting sort using list only in OCaml? My intuitive is ...
2
votes
4answers
121 views

In Python, why can't an accumulator generators be written with lambdas? [closed]

Paul Graham describes the following problem: We want to write a function that generates accumulators-- a function that takes a number n, and returns a function that takes another number i and ...
0
votes
1answer
81 views

Is Functional Programming Similar to Self-Modifying Code? [closed]

It seems that sometimes code in functional programs accepts other code (functions) as arguments and modifies it and returns it for execution. It seems similar to self-modifying code. Does this mean ...
2
votes
1answer
84 views

next and rest in clojure

I am reading explanations on rest vs next in clojure. As I understand it, it breaks down to next evaluating/realizing the tail of the sequence, to know wether it should return nil or not, while rest ...
1
vote
2answers
79 views

clojure partial clarification

I'm reading a book on clojure, and I came by an example that I dont fully understand.. Here is the code in repl: user=> (repeatedly 10 (rand-int 10)) ClassCastException java.lang.Integer cannot ...
4
votes
2answers
94 views

Python and functional language interop

My current primary programming language is python. There are lots of things I like about it, but I also like functional languages. Not enough to do an entire program in them, but definitely for ...
0
votes
1answer
63 views

why is functional language good for big data?

I'm currently working in a bank, and working with Q(kdb+, K whatever its called). I know that this is a functional language, and I also know that a lot of organizations use functional language to deal ...
3
votes
1answer
99 views

Functional programming: reflecting state in absence of actual state change?

I am new to some of the advanced functional programming ideas, in particular: how to work with immutable data. Data structures are often composites, composed of smaller data structures. For ...
2
votes
3answers
137 views

Functional assertion in Scala

Is there built-in support for assertions that return a result? It is very non-functional to do this: def addPositive(a: Int, b: Int) = { assert(a > 0 && b > 0) a + b } I ...
1
vote
2answers
41 views

What is wrong with my stack implementation in racket?

I'm learning racket and new to functional programming and wrote the following code for stack: (define stack '(0)) (define (push x stack) (set! stack (cons x stack))) (define (pop stack) (let ...
1
vote
0answers
37 views

how could i factor this recursion as a reduce?

/** * recursively build a nested Backbone.Model or Backbone.Collection * from a deep JSON structure. * * undefined for regex values */ exports.modelify = function modelify ...
16
votes
2answers
318 views

How does this lambda/yield/generator comprehension work?

I was looking through my codebase today and found this: def optionsToArgs(options, separator='='): kvs = [ ( "%(option)s%(separator)s%(value)s" % {'option' : ...
0
votes
1answer
131 views

Standard Operations on Option<T> monad beyond Bind and Map

I'm using a C# implementation of F# option<`a`> monad from Petricek book (Real World Functional Programming): internal enum OptionType { Some, None } internal abstract class Option<T> { ...
2
votes
1answer
64 views

How to convert inner elements of a List[List[Int]] to tupleNs? (How to flatten polymorphic tupleNs)

I want to convert multiple lists, each with a constant inner list size, that look like this: List(List(1, 2, 3), List(3, 4, 5)) List(List(1, 2), List(3, 4)) to this: List((1, 2, 3), ...
3
votes
0answers
94 views

Emacs lisp high-order function support

I am trying to implement Haskell-like high-order function in Elisp, using closures. ;;; -*- lexical-binding: t -*- (defun foo (pair) (car pair)) (defun* .curry (fn) (lambda (x y &rest ...

1 2 3 4 5 78