I wrote a collaborator some clojure code which I distributed to them as a
standalone jar file which they are executing with
java -jar mystandalone.jar
The problem is that this executable is called a great many times in their
application and every time the
executable is called there is a java/
Not quite what I'm looking for. There is an assigment in the Functional
Programming in Scala coursera course called "funsets" - purely functional
sets. A set is defined by its characteristic functions (a predicate) and
source code can be found here
https://mwclearning.com/sourcecode/scala/funs
Hi All,
First time poster in this google group. I'm looking for a slightly
different kind of* set* than the set collection offered in clojure.core.
Whilst the latter is great for finite sets, I'm looking for a package that
implements uncountable sets i.e. the set of real numbers less than 44.
Th