2
votes
1answer
18 views
Building the directory tree
I am trying to build a directory tree such as how xml trees are represented, in the form of a vector, i can traverse the file system fine using the following snippet but i can't put my head around how …
3
votes
2answers
45 views
How do you evaluate a string as a clojure expression?
How would I get something similar to the following?:
(evaulate-text "(+ 1 2)") ; resolves to 3
6
votes
8answers
212 views
Does Functional programming allow better runtime compiler optimizations?
NOTE: Already made this a Wiki. I don't care what this question is tagged as, as long as there is a good discussion.
I've heard that since in pure functional programs, there are no side effects and …
2
votes
1answer
54 views
Clojure: How to to recur upon exception?
I am trying to execute a func several times before giving up upon exceptions.
But it is not valid in Clojure to recur from catch block.
How can this be achieved ?
(loop [tries 10]
(try
…
1
vote
5answers
84 views
How to write this piece of code in Clojure
If I have something like this:
int foo() {
if(somecondition) {
// some code
if(cond2) return -1;
// some code again
}
if(cond3){
// something again
}
…
2
votes
1answer
47 views
Printing and reading lists from a file in Clojure
Hi,
I have a Clojure data structure of the form:
{:foo '("bar" "blat")}
and have tried writing them to a file using the various pr/prn/print. However, each time the structure is written as
…
1
vote
2answers
34 views
tutorial for installing VimClojure
Is there any tutorial/screencast available online for free to figure out how to use/install vimClojure.
0
votes
3answers
67 views
How to translate this piece of imperative code into Clojure code
Usually, we have situation like this in C++
int a=0;
if(some_condition_satisfied(g)) {
a = eval(g); // never returns 0
}
if(a!=0) {
do_something();
}
How can I do the above in Clojure without …
2
votes
1answer
63 views
setLookAndFeel and NullPointerException
Hi!
Has anyone ever tried to change swing's look and feel? This code, taken from an example, simply yields a null pointer exception, and I wonder what might be wrong:
…
1
vote
1answer
56 views
Clojure data structure traversal/searching.
I'd like to be able to do something like this:
(search data
list?
(fn [x] (and (list? x) (= 4 (first x))))
(fn [x] (and (set? x) (contains x 3))))
And have it recursively search a nested …
1
vote
2answers
31 views
How can you “parameterize” Clojure Contrib’s test-is?
Both Junit and TestNG provide mechanisms for iterating over a collection of input parameters and running your tests against them. In Junit this is supported via the Parameterized annotation, while …
2
votes
2answers
82 views
How might you implement design-by-contract in Clojure specifically or functional languages in general?
I'd prefer examples to be in a Lisp variant (bonus points for Clojure or Scheme) since that's what I'm most familiar with, but any feedback regarding DBC in functional lanugages would of course be …
2
votes
2answers
57 views
Replace strings using regular expressions and backreferences in Clojure
I'm trying to convert from HTML to Latex, and want to change this:
<a href="www.foo.com/bar">baz</a>
into:
baz\footnote{www.foo.com/bar}
I'd like to generate a Clojure function to …
3
votes
2answers
109 views
Any example in which Clojure really shines against Java which is not concurrency/immutability-feature related?
I can perfectly see why Clojure is really good for concurrent programming. I can see the advantages of FP also in this regard.
But clearly, not every line of code that we write is part of a thread or …
2
votes
5answers
122 views
Clojure: How to replace an element in a nested list ?
I have this deeply nested list (list of lists) and I want to replace a single arbitrary element in the list. How can I do this ? (The built-in replace might replace many occurrences while I need to …
