3
votes
3answers
72 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
5
votes
1answer
59 views
How can I use the clojure REPL together with QT Jambi?
I have not found a solution to use the clojure REPL with Qt on the web.
Basically the problem is that the REPL hangs as soon as you call QApplication/exec in order to get the UI to …
1
vote
4answers
65 views
Reduce a set of functions over a value?
Hi,
I'm looking for a clean, idiomatic way to do a "backwards reduce" in Clojure.
I've got
(def fns '(fn1 fn2 fn3))
(def val 42)
I'd like to obtain (fn3 (fn2 (fn1 val))), an …
1
vote
6answers
176 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 …
7
votes
12answers
2k views
Questions to answer before proposing to use a new language?
What are the technical questions I simply must have answers for before I approach someone about introducing a new language?
I'm looking for the list of technical questions that …
2
votes
2answers
44 views
How can I convert a LazySeq of Characters to a String in Clojure?
Let's say I have a LazySeq of java.lang.Character like
(\b \ \! \/ \b \ \% \1 \9 \/ \. \i \% \$ \i \space \^@)
How can I convert this to a String? I've tried the obvious
(Strin …
2
votes
2answers
73 views
clojure (with-timeout … macro)
I'm looking for a macro that will throw an exception if an expression takes longer than X seconds to complete.
4
votes
4answers
88 views
Mapping a function on the values of a map in Clojure
I want to transform one map of values to another map with the same keys but with a function applied to the values. I would think there was a function for doing this in the clojure …
1
vote
3answers
94 views
Clojure Matrix Representation
What is a good representation for matrices in Clojure? I'm interested in dealing with dense matrices of floating point numbers. The "list of lists" representation springs to mind, …
2
votes
9answers
327 views
Clojure: Simple factorial causes StackOverflow
What am i doing wrong? Simple recursion of few thousand deep throws "StackOverflowError"
If the limit of Clojure recursions is so low, how can I rely on it ?
(defn fact[x]
(if …
1
vote
2answers
34 views
Enclojure REPL can’t find dependent clj file on Load
I have a problem with the Enclojure REPL and using clojure modules from it. The Load/Change REPL to file/ns works fine with an isolated clojure file, but breaks with a file which h …
0
votes
1answer
29 views
interaction between seque and pmap
If I pmap a function onto a sequence how far ahead will the sequence be realised in parallel
If I have a single thread reading from a sequence being produced in parallel?
will thi …
3
votes
4answers
82 views
Clojure: working with a java.util.HashMap in an idomatic Clojure fashion
I have a java.util.HashMap object m (a return value from a call to Java code) and I'd like to get a new map with an additional key-value pair.
If m were a Clojure map, I could use …
2
votes
3answers
86 views
Compojure development without web server restarts
I've written a small Swing App before in Clojure and now I'd like to create an Ajax-style Web-App. Compojure looks like the best choice right now, so that's what I'm going to try o …
1
vote
3answers
185 views
Is Clojure production ready?
Where is it already being used in production and how ?
