6
votes
3answers
81 views
Doubly Linked List in a Purely Functional Programming Language
How does one go about doing doubly linked lists in a pure functional language? That is, something like Haskell where you're not in a Monad so you don't have mutation. Is it possible? (Singly linked …
2
votes
6answers
92 views
Book that teaches functional programming
Is there a book that teaches functional programming, without being a tutorial for an FP language? I am looking for more theoretical stuff.
2
votes
9answers
205 views
Can I start web development with a functional language?
I'd like to start doing some forms of web development, with the aim of building web apps that could eventually grow into start-up products. And for a long time, I have been very curious about …
2
votes
2answers
77 views
Can somebody please explain this continuation in scheme?
I am learning continuations but I can't wrap my head around this code. Why does it go into infinite loop?
(let ((cont #f))
(call/cc (lambda (k)
(set! cont k)))
(cont #f))
5
votes
1answer
71 views
How to make Haskell compute the correct polymorphic type?
I just realized how useful the little on-function can be.
Ex:
orderByLength = sortBy (compare `on` length)
But unfortunately, the inferred types can be somewhat counter-intuitive.
According to …
3
votes
3answers
77 views
How to use ‘oneof’ in quickCheck (Haskell)
I am trying to write a prop that changes a Sudoku and then checks if it's still valid.
However, I am not sure how to use the "oneof"-function properly. Can you give me some hints, please?
…
3
votes
2answers
81 views
Origin of Map in Computer Science
In computer science, there are two definitions of the word map. The first is as an associative array, a type of container that maps values of one type to values of another type. An example of this is …
4
votes
2answers
95 views
Clojure: How to create a function at runtime
I want to generate a fn totally at runtime (i.e. the name and the arg symbols are decided at runtime, not in code)
What's the best way to achieve this ?
For example how can I implement the …
5
votes
3answers
215 views
Erlang (Functional Programming) vs Object Oriented Programming in terms of thinking
I am learning Erlang and I am trying to create a very sample blog program. However my mind currently is trapped in the OO world (var p = new Post(); p.Title = ""; p.Save();). I would like to …
0
votes
1answer
41 views
Can I have a co-routine of three functions using continuations in Scheme?
Is it possible to add another function procC in here so that the sequence of evaluation is procA->procB->procC->procA ... ?
(define (procA another-fun)
(let loop ((n 5))
(display "In Proc A …
2
votes
1answer
71 views
Please refactor my macro in Scheme
I am learning hygiene and I tried to make a simple for loop in Scheme. I want to support three kinds of constructs as shown in example below
(for i = 1 : (< i 4) : (++ i)
(printf …
2
votes
2answers
108 views
When should one use actors to solve a concurrency problem?
I have been looking at the Actor Model for a while now. To me it seems to be just another approach towards concurrent programming with its own upsides and downsides.
It certainly does not guarantee …
5
votes
9answers
310 views
pitfalls/disadvantages of functional programming
What are some of the downsides of functional programming?
EDIT: I am more looking for disadvantages of the paradigm as a whole, not things like "not widely used", or "no good debugger available". …
0
votes
2answers
84 views
Why the tuple type can not be inferred in the list recursion?
I want to refine the raw text by using regular expression, given a list of (patten,replacement) tuple.
I tried to use the patten matching on the list element but failed, the error showed that "This …
5
votes
3answers
132 views
Is there a scala identity function?
If I have something like a List[Option[A]] and I want to convert this into a List[A], the standard way is to use flatMap:
scala> val l = List(Some("Hello"), None, Some("World"))
l: …
