3
votes
6answers
259 views
Is functional Clojure or imperative Groovy more readable?
OK, no cheating now.
No, really, take a minute or two and try this out.
What does "positions" do?
Edit: simplified according to cgrand's suggestion.
(defn redux [[current next] flag] [(if flag …
0
votes
2answers
26 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 …
1
vote
1answer
39 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 …
2
votes
3answers
43 views
SML/NJ - Pattern Matching an Dynamic Typing
Is it possible to write functions with dynamically typed input parameters?
I tried pattern matching, but apparently it does not work like this.
I wish to do something like this:
fun firstStr …
4
votes
4answers
135 views
Clojure: How to find out the arity of function at runtime ?
Given a function object or name, how can I determine its arity? Something like (arity func-name) .
I hope there is a way, since arity is pretty central in Clojure
1
vote
4answers
135 views
Why purely functional languages instead of “impure” functional languages?
What's the advantage, for someone who is not a theoretical computer scientist, of learning a purely functional language like Haskell or Erlang instead of an "impure" language with a strong functional …
3
votes
10answers
2k views
Best (functional?) programming language to learn coming from Mathematica
As a mechanical engineering PhD student, I haven't had a great pedigree in programming as part of my “day job”. I started out in Matlab (having written some Hypercard and Applescript back in the day, …
3
votes
4answers
150 views
+150
Patterns for functional, dynamic and aspect-oriented programming
We have a very nice GoF book (Design Patterns: Elements of Reusable Object-Oriented Software) about patterns in Object Oriented Programming, and plenty of articles and resources in the web on this …
3
votes
3answers
307 views
How to write lambda methods in Objective-C ?
How to write lambda methods in Objective-C ?
4
votes
3answers
119 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: …
2
votes
2answers
82 views
Is it possible to write tacit functions in F#
Tacit or point-free style programming allows one to create functions without regard to their arguments. Can this be done in F#?
3
votes
7answers
152 views
How to write an enumeration of all computable functions?
Motivation: I'd like to be able to use toy functional programming in languages without first-order functions, by using natural numbers instead of functions.
A universal function is a function f : N …
5
votes
8answers
718 views
macro support in F#
After reading Practical Common Lisp I finally understood what the big deal about macros was, and I have been looking for a language for the .NET platform that supports this. There are a few lisp …
11
votes
7answers
716 views
Can you explain closures (as they relate to Python)?
I've been reading a lot about closures and I think I understand them, but without clouding the picture for myself and others, I was wondering if anyone can explain closures as succinctly and clearly …
6
votes
5answers
387 views
What is zip (functional programming?)
I recently saw some Clojure or Scala (sorry I'm not familiar with them) and they did zip on a list or something like that. What is zip and where did it come from ?
