1
vote
2answers
50 views
Scheme: Implementing n-argument compose using fold
I'm trying to find the "best" implementation of a multi-argument "compose" in Scheme (I know it's a builtin in some implementations, but assume for the moment I am using one that d …
3
votes
8answers
136 views
Functional Data Structures in Java
Does the Java standard library have any functional data structures, like immutable Sets, Lists, etc., with functional update?
0
votes
0answers
46 views
Still Having issues with this one. Help:) [closed]
#include <iostream>
#include <string>
#include <iomanip>
using std::cout;
using std::cin;
using std::endl;
using std::string;
using std::setprecision;
us …
1
vote
2answers
98 views
How to populate IEnumerable in Lambda expression?
I just cannot get this to work, would appreciate if someone can help.
So I get back an XML result from a database which looks like:
<matches>
<issuer client_name="MTR" …
4
votes
1answer
55 views
In F#. Is it possible to overload constructor of an abstract type?
If yes could you give an example of a type with parameterless and "parameterfull" constructor.
Is that something you would recommend using or does F# provide some alternative more …
2
votes
6answers
108 views
Find max value in Java with a predefined comparator.
I have a List<Foo>, and a compare() method taking two Foo objects and returning the 'greater' one. Is there a built-in Java method that takes the list and finds the largest o …
3
votes
3answers
110 views
Functionally traversing a tree in C#
Consider the following extension method in c#, Traverse:
IEnumerable<T> Traverse<T>( this IEnumerable<T> source,
Func<T, IEnume …
1
vote
6answers
161 views
Clojure: Doesn’t the ability to use Java objects with state defy the whole idea of functional P?
I thought the whole idea was to have only computation with NO state and NO side effects. Now if a Clojure app(or even worse, a reusable Clojure library ) can use and create any Jav …
5
votes
3answers
130 views
Anyone ever flip (<$>)
I found defining the following
(%) = flip fmap
I can write code like the following:
readFile "/etc/passwd" % lines % filter (not . null)
to me it makes more sense then the a …
2
votes
3answers
185 views
Scheme/Lisp nested loops and recursion
I'm trying to solve a problem in Scheme which is demanding me to use a nested loop or a nested recursion.
e.g. I have two lists which I have to check a condition on their Cartesia …
5
votes
5answers
103 views
functional programming: immutable data structure efficiency
Hi, I don't understand, how FP compilers make the code dealing with immutable data structures fast, not blow up stack, etc.
For example, insert operation in tree, it has to copy t …
1
vote
5answers
116 views
Selection sort in functional Scala
I'm making my way through "Programming in Scala" and wrote a quick implementation of the selection sort algorithm. However, since I'm still a bit green in functional programming, I …
2
votes
4answers
120 views
Can I zip more than two lists together in Scala?
Given the following Scala List:
val l = List(List("a1", "b1", "c1"), List("a2", "b2", "c2"), List("a3", "b3", "c3"))
How can I get:
List(("a1", "a2", "a3"), ("b1", "b2", "b3"), …
1
vote
3answers
79 views
Issues with maps and their entries in Scala
I have a recursive function that takes a Map as single parameter. It then adds new entries to that Map and calls itself with this larger Map. Please ignore the return values for no …
6
votes
5answers
155 views
What are the main issues in designing an interpreter for a functional language?
Suppose I want to implement an interpreter for a functional language. I would like to understand the issues involved in doing so and suitable literature that is available. This is …
