9
votes
Haskell vs. F#
Big differences:
Platform
Object orientation
Laziness
The similarities are more important than the differences. Basically, you should use F# if you ar …
11
votes
If you already know LISP, why would you also want to learn F#?
Static typing (with type inference)
…
5
votes
List Comprehension Library for Scheme?
Swindle is primarily a CLOS emulator library, but it has list comprehensions too. I've used them, they're convenient …
8
votes
Will there be a functional language which does for the Java community what F# does for the .NET community?
Perhaps Clojure. It's not statically typed, but it has more of an emphasis on immutability and concurrency than F. However, like F# (and unlike Comm …
0
votes
passing functions as arguments in ruby
You sound like you might also want Symbol.to_proc (code by Raganwald)
class Symbol
# Turns the sym …
0
votes
Functional style C# API design (returning function parameter augmented with calculation result)
There is no problem with your original API of
void Demo() {
IGraph graph = CreateGraphInAnyWay();
ILayoutInfo layout = SimpleLayout(graph);
PrintCoordinates(graph,layout);
}
…
3
votes
Are the functional programming features provided in C# rich enough? What’s missing
Per your question, as a Lisper, what I miss when programming in Java (sorry, I don't use C#):
Good syntax: s-expressions.
Dynamic typing: no complex type declarations.
…
2
votes
How do you properly compute pairwise differences in Scheme?
map takes multiple arguments. So I would just do
(define (butlast l)
(reverse (cdr (reverse l))))
(let ((l '(0 1 3 6 10)))
(map - l (cons 0 (butlast l)))
…
2
votes
Y-Combinator Practical Example
Others can correct me if I'm wrong, but I'm pretty sure the Y combinator is strictly academic. Think about it: to implement it your language needs to support higher-order functions but not recursio …
8
votes
Functional programming in Python
The question you reference asks which languages promote both OO and functional programming. Python does not promote functional programming even though it works fairly well.
…
3
votes
Equivalent for inject() in Python?
I think you probably want to use all, which is less general than inject. reduce is the Python equivalent of inject, though.
all(n …
4
votes
Scheme Coding Style Questions
To fill in Doug's answer for your specific questions:
(if test
then
else)
(cond
(test1 exp1)
(test2 exp2)
(else exp3))
Or, for conds with long serie …
1
vote
Please Help me add up the elements for this structure in Scheme/Lisp
You need to break the problem into two parts: first, transform the list into something like this:
'(((lady-in-water . 1.25) (lady-in-water . 0.82) (lady-in-water . 0.88))
((snake …
1
vote
How different programming languages use closures?
The main intentional difference in semantics between the mainstream languages is whether to allow changes to variables captured by the closure. Java and Python say no, the other languages …
3
votes
Haskell composition (.) vs F#’s pipe forward operator (|>)
More speculation, this time from the predominantly Haskell side...
($) is the flip of (|>), and its use is quite common when you can't write point-free code. S …
