active questions tagged clojure - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T14:56:05Zhttp://stackoverflow.com/feeds/tag/clojurehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1843924/what-to-learn-after-php-scala-or-clojure6What to learn after PHP? Scala or Clojure?samsung2009-12-03T23:48:49Z2009-12-04T16:09:05Z
<p>I have a heavy web dev background with PHP. My reasons for learning a functional programming languages are:</p>
<ol>
<li>to improve my programming skills. It was heavily suggested that learning a FPL helps. this has high priority because I want to be better and better.</li>
<li>learn a general purpose programming language to solve tasks like scripting (OS scripting, text manipulation etc..)</li>
<li>to be used as an alternative for PHP in web development.</li>
</ol>
<p>Also which has the better community support, tutorials and books and the better web application framework?</p>
<p>Feel free to suggest other languages. Thanks!</p>
http://stackoverflow.com/questions/1173133/continuations-in-clojure2Continuations in Clojure.kunjaan2009-07-23T17:00:35Z2009-12-04T04:24:50Z
<p>I read somewhere where rich hickey said: </p>
<blockquote>
<p>"I think continuations might be neat
in theory, but not in practice"</p>
</blockquote>
<p>I am not familiar with clojure.<br />
1. Does clojure have continuations?<br />
2. If no, dont you need continuations? I have seen a lot of good examples especially from <a href="http://okmij.org/ftp/" rel="nofollow">this guy</a>. What is the alternative?<br />
3. If yes, is there a documentation?</p>
http://stackoverflow.com/questions/1839589/what-is-the-idiomatic-way-to-capture-prints-to-out-from-a-clojure-function3What is the idiomatic way to capture prints to *out* from a Clojure function?rrc7cz2009-12-03T12:28:14Z2009-12-03T22:42:55Z
<p>For example, the <strong><a href="http://richhickey.github.com/clojure-contrib/prxml-api.html" rel="nofollow">prxml</a></strong> function prints XML to *out*. I would like to instead capture this output as a String. Here is the typical usage from a REPL:</p>
<pre><code>user> (prxml [:p "Test"])
<p>Test</p>nil
</code></pre>
<p>I'd instead like to do:</p>
<pre><code>(def xml (capture-out (prxml [:p "Test"])))
</code></pre>
<p>I made up the <strong>capture-out</strong> function, but I suspect something like it exists, only I'm having trouble finding it in the <a href="http://clojure.org/api" rel="nofollow">API</a> or mailing list.</p>
http://stackoverflow.com/questions/1607700/tutorial-for-clojurebox3Tutorial for ClojureBoxChris Weber2009-10-22T14:37:55Z2009-12-03T21:05:52Z
<p>I'm trying to learn clojure. <a href="http://clojure.bighugh.com/" rel="nofollow">ClojureBox</a> appears to be similar to LispBox - http: //gigamonkeys.com/lispbox/ which I've used previously.</p>
<p>I'm looking for a good clojure specific tutorial on using emacs as it's configured with clojurebox. </p>
<p>Here are some specific questions I have:</p>
<ul>
<li>How do I create a new clojure file in emacs and</li>
<li>Load an existing clojure file so the forms (values, functions) are available to the REPL</li>
<li>What is a good project structure? If I have more than one file what is the best way to proceed and</li>
<li>Does Programming Clojure http: //pragprog.com/titles/shcloj/programming-clojure answer these questions? </li>
<li>Is there a better environment than clojurebox? I've tried enclojure for netbeans and it's currently broken (won't create a project correctly). Netbeans 6.7.1 and enclojure 2009-08-25-release.</li>
</ul>
http://stackoverflow.com/questions/1805081/clojure-cant-find-clj-in-local-directory-and-classes-on-classpath1Clojure can't find .clj in local directory, . and ./classes on CLASSPATHBen Godfrey2009-11-26T18:24:53Z2009-12-03T11:10:12Z
<p>When I evaluate (use 'hello) to load hello.clj, the REPL complains with the following error:</p>
<pre><code>java.io.FileNotFoundException: Could not locate hello__init.class or hello.clj on classpath: (NO_SOURCE_FILE:0)
</code></pre>
<p>I'm invoking the REPL like this:</p>
<pre><code>java -cp "/Library/Java/Extensions/servlet-api-2.5-20081211.jar:... lots of jarfiles ...:/Library/Java/Extensions/clojure-contrib.jar:/Library/Java/Extensions/clojure-1.0.0.jar:./classes/:." jline.ConsoleRunner clojure.lang.Repl
</code></pre>
<p>Reading around, this looks like the file isn't being found in the PWD, but I've added . to the path with no success :-(.</p>
<p>Running with Java 1.6 on OS X 10.6.</p>
<p>I'm sure I'm being an idiot, can someone hit me with a LART?</p>
<p>EDIT: I also tried the <a href="http://github.com/citizen428/ClojureX" rel="nofollow">ClojureX</a> distro, and got the same results.</p>
http://stackoverflow.com/questions/1837050/building-ip-and-port-from-byte-buffer2Building IP and Port from Byte BufferHamza Yerlikaya2009-12-03T01:16:32Z2009-12-03T02:58:01Z
<p>I have a byte buffer 6 bytes long first four contains ip address last 2 contains port, in big endian notation.</p>
<p>to get the ip i am using,</p>
<pre><code>(apply str (interleave (map int (take 4 peer)) (repeat ".")))
</code></pre>
<p>Is casting bytes to int safe to get the ip address?</p>
<p>and also in java i use,</p>
<pre><code> int port = 0;
port |= peerList[i+4] & 0xFF;
port <<= 8;
port |= peerList[i+5] & 0xFF;
</code></pre>
<p>this snippet to get the port address. How can i convert this to clojure?</p>
http://stackoverflow.com/questions/1825843/can-not-get-clojure-contrib-to-load-filenotfoundexception2Can not get clojure-contrib to load - FileNotFoundExceptionTim2009-12-01T12:19:01Z2009-12-01T20:47:43Z
<p>I have tried putting clojure-contrib.jar various places on my filesystem, I have tried manually specifying the classpath when launching the REPL, I have tried extracting the jar and putting the clj files on the classpath, nothing seems to work. I continue getting something like this:</p>
<pre><code>java.io.FileNotFoundException: Could not locate clojure/contrib/str_utils__init.
class or clojure/contrib/str_utils.clj on classpath: (NO_SOURCE_FILE:0)
</code></pre>
<p>When I execute <code>(println (seq (.getURLs (java.lang.ClassLoader/getSystemClassLoader))))</code> to see the classpath, it does include clojure-contrib:</p>
<pre><code>(#<URL file:/C:/Program%20Files/Java/jre1.6.0_06/lib/clojure-1.0.0.
jar> ... #<URL file:/C:/Program%20Files/Java/jre1.6.0_06/lib/clojure-contrib.jar>)
</code></pre>
<p>When I make a .clj file of my own and put it on the classpath I am able to use or require it and have access to its functions as I'd expect.</p>
<p>If I move a .clj file - str-utils.clj for instance - to the pwd (which is on the classpath) it sorta works - it at leasts finds the file, although it generally can't do anything with it because of dependencies on other functions buried in clojure-contrib which it can't find.</p>
<p>Any ideas why this wouldn't work for clojure-contrib?</p>
http://stackoverflow.com/questions/1824932/clojure-how-to-create-a-function-at-runtime5Clojure: How to create a function at runtimebugspy.net2009-12-01T09:09:38Z2009-12-01T14:51:25Z
<p>I want to generate a fn totally at runtime (i.e. the name and the arg symbols are decided at runtime, not in code)
What's the best way to achieve this ? </p>
<p>For example how can I implement the following function ?</p>
<pre><code>(defn gen-fn [name arg-symbols body]
...
...
</code></pre>
<p>which would be used like this:</p>
<pre><code>(gen-fn "my-func-name" (symbol "x") (symbol "y") (println "this is body. x=" x))
</code></pre>
<p>Note that function name, the args and the body are not coded but can be decided at runtime</p>
http://stackoverflow.com/questions/1257028/why-should-i-use-apply-in-clojure4Why should I use 'apply' in Clojure?kunjaan2009-08-10T20:28:33Z2009-11-30T14:07:53Z
<p>This is what Rich Hickey said in one of the blog posts but I don't understand the motivation in using apply. Please help.</p>
<blockquote>
<p>A big difference between Clojure and CL is that Clojure is a Lisp-1, so funcall is not needed, and apply is only used to apply a function to a runtime-defined collection of arguments. So, (apply f [i]) can be written (f i).</p>
</blockquote>
<p>Also, what does he mean by "Clojure is Lisp-1" and funcall is not needed? I have never programmed in CL.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1413390/why-clojure-over-other-jvm-lisps-kawa-armed-bear-or-sisc10Why Clojure over other JVM Lisps: Kawa, Armed Bear or SISC?uzo2009-09-11T21:32:49Z2009-11-30T11:56:09Z
<p>The JVM already had three Lisps before Clojure arrived on the scene: <a href="http://www.gnu.org/software/kawa/" rel="nofollow">Kawa</a>, <a href="http://common-lisp.net/project/armedbear/" rel="nofollow">Armed Bear</a> and <a href="http://sisc-scheme.org/" rel="nofollow">SISC</a>.</p>
<p>What gap does <a href="http://clojure.org/" rel="nofollow">Clojure</a> fill that was left by those Lisps?</p>
http://stackoverflow.com/questions/1810231/defining-a-spi-in-clojure1Defining a SPI in ClojureJoe Holloway2009-11-27T18:57:20Z2009-11-30T08:23:09Z
<p>I'm looking for an idiomatic way(s) to define an interface in Clojure that can be implemented by an external "service provider". My application would locate and instantiate the service provider module at runtime and delegate certain responsibilities to it. </p>
<p>Let's say, for example, that I'm implementing a RPC mechanism and I want to allow a custom middleware to be injected at configuration time. This middleware could pre-process the message, discard messages, wrap the message handler with logging, etc.</p>
<p>I know several ways to do this if I fall back to Java reflection, but feel that implementing it in Clojure would help my understanding. </p>
<p>(Note, I'm using SPI in a general sense here, not specifically referring to the way it's defined in the <a href="http://java.sun.com/j2se/1.4.2/docs/guide/jar/jar.html#Service%20Provider" rel="nofollow">JAR file specification</a>)</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1785093/how-can-i-configure-my-project-clj-so-that-leiningen-finds-my-sources-under-a-non3How can I configure my project.clj so that Leiningen finds my sources under a non-standard directory structure?rrc7cz2009-11-23T18:36:37Z2009-11-30T07:57:30Z
<p>It seems Leiningen's <em>compile</em> task looks for source packages to start immediately under the <strong>/src</strong> directory. I use both Java and Clojure in my project, so my <strong>/src</strong> directory looks like this:</p>
<pre><code>/src/java/myapp
/src/clojure/myapp
</code></pre>
<p>Right now Leiningen is looking for <strong>/src/myapp</strong> and it's failing out during the <em>compile</em>.</p>
<p>Related, I'd like to know how to manually add directories to the classpath for Leiningen's <em>compile</em> and <em>repl</em> tasks. For example, Enlive's <strong>deftemplate</strong> function will search the classpath for a named template file. Adding <strong>/templates</strong> to the classpath would be required for my project to build and run properly.</p>
http://stackoverflow.com/questions/1800896/in-which-cases-is-better-to-use-clojure6In Which Cases Is Better To Use Clojure?Nathan Campos2009-11-26T00:22:15Z2009-11-29T22:37:35Z
<p>I develop in Lisp and in Scheme, but I was reading about Clojure and then I want to know, in which cases is better to use it than using Lisp or Scheme? Thanks</p>
http://stackoverflow.com/questions/1816313/financial-account-pattern-implementation-in-clojure-ref-or-agent2Financial Account pattern implementation in Clojure: ref or agent?CBFraser2009-11-29T18:30:04Z2009-11-29T19:35:42Z
<p>I'm working my way through Fowler's <a href="http://rads.stackoverflow.com/amzn/click/0201895420" rel="nofollow">Analysis Patterns</a> and programming examples for myself in Clojure as way of developing a better understanding of both.</p>
<p>Putting persistence/durability issues to the side for the moment[1], it seems that Clojure refs with their synchronization would be the obviously best approach.</p>
<p>On the other hand, given Posting Rules that are triggered by entries into the account, producing more transactions in yet more accounts, perhaps agents, and their asynchronous updates would be better. At this point it looks like I might have to try a bit of both.
Anybody have any suggestions on this particular design decision?</p>
<p>[1] I'm assuming if I can get the functionality and concepts working nicely, I'll be able to map everything into a sensible DB schema later.</p>
http://stackoverflow.com/questions/1726943/is-functional-clojure-or-imperative-groovy-more-readable3Is functional Clojure or imperative Groovy more readable?Frederic Daoud2009-11-13T03:27:23Z2009-11-29T06:17:50Z
<p>OK, no cheating now.</p>
<p>No, really, take a minute or two and try this out.</p>
<p>What does "positions" do?</p>
<p>Edit: simplified according to cgrand's suggestion.</p>
<pre><code>(defn redux [[current next] flag] [(if flag current next) (inc next)])
(defn positions [coll]
(map first (reductions redux [1 2] (map = coll (rest coll)))))
</code></pre>
<p>Now, how about this version?</p>
<pre><code>def positions(coll) {
def (current, next) = [1, 1]
def previous = coll[0]
coll.collect {
current = (it == previous) ? current : next
next++
previous = it
current
}
}
</code></pre>
<p>I'm learning Clojure and I'm loving it, because I've always enjoyed functional programming. It took me longer to come up with the Clojure solution, but I enjoyed having to <i>think</i> of an elegant solution. The Groovy solution is alright, but I'm at the point where I find this type of imperative programming <i>boring</i> and mechanical. After 12 years of Java, I feel in a rut and functional programming with Clojure is the boost I needed.</p>
<p>Right, get to the point. Well, I have to be honest and say that I wonder if I'll understand the Clojure code when I go back to it months later. Sure I could comment the heck out of it, but I don't need to comment my Java code to understand it.</p>
<p>So my question is: is it a question of getting more used to functional programming patterns? Are functional programming gurus reading this code and finding it a breeze to understand? Which version did <i>you</i> find easier to understand?</p>
<p>Edit: what this code does is calculate the positions of players according to their points, while keep track of those who are tied. For example:</p>
<pre><code>
Pos Points
1. 36
1. 36
1. 36
4. 34
5. 32
5. 32
5. 32
8. 30
</code></pre>
http://stackoverflow.com/questions/1696693/clojure-how-to-find-out-the-arity-of-function-at-runtime4Clojure: How to find out the arity of function at runtime ?bugspy.net2009-11-08T14:17:03Z2009-11-28T22:24:10Z
<p>Given a function object or name, how can I determine its arity? Something like <code>(arity func-name)</code> .</p>
<p>I hope there is a way, since arity is pretty central in Clojure</p>
http://stackoverflow.com/questions/1573988/how-do-i-mix-jvm-based-languages-in-a-single-netbeans-project3How do I mix JVM based languages in a single Netbeans project?Brian Knoblauch2009-10-15T17:46:57Z2009-11-26T16:06:17Z
<p>For example, is it possible to have Scala, Java, and Clojure source all compile/build together properly inside the same project? Or, do I have to do them as separate project libraries then used by whatever I pick as the "master" project?</p>
<p>If neither of those, how's everyone else doing it?</p>
http://stackoverflow.com/questions/1787708/representing-a-tree-in-clojure1Representing A Tree in ClojureHamza Yerlikaya2009-11-24T04:07:02Z2009-11-26T13:27:26Z
<p>What would be a idiomatic way to represent a tree in Clojure?</p>
<pre><code> A
/ \
B C
/\ \
D E F
</code></pre>
<p>Such as the one above, performance is not important and tree's wont grow more than 1k elements.</p>
http://stackoverflow.com/questions/88302/macro-support-in-f5macro support in F#Anders Rune Jensen2008-09-17T22:22:28Z2009-11-25T20:15:53Z
<p>After reading Practical Common Lisp I finally understood what the big deal about macros was, and I have been looking for a language for the .NET platform that supports this. There are a few lisp dialects for .NET but from what I have been able to gather all are either very beta or abandoned. Recently my interest has been sparked by Clojure, but it's for the java platform and while on probably could use ikvm it doesn't feel some integrated. Especially when you want to do stuff like WPF.</p>
<p>Recently I have been hearing whisper about F#, I tried to look at the documentation if I could find anything about macro support, but haven't found it. So does anyone know?</p>
<p>Thanks :)</p>
http://stackoverflow.com/questions/1361088/what-factors-could-determine-whether-clojure-scala-or-haskell-will-gain-traction6What factors could determine whether Clojure, Scala or Haskell will gain traction?i_like_monkeys2009-09-01T07:43:04Z2009-11-25T13:52:59Z
<p>Given that it's impossible to see into the future, what factors related to Clojure, Scala or Haskell are likely to determine whether one of them catches on?</p>
<p>Are there cultural or economic issues that could give one of these languages an advantage over the others?</p>
<p>Or are none of these languages likely to gain traction because of their conceptual complexity?</p>
http://stackoverflow.com/questions/1756722/how-to-improve-clojures-error-messages2How to improve Clojures error messagesAnders Rune Jensen2009-11-18T15:19:25Z2009-11-24T23:51:08Z
<p>I've been playing a bit with Clojure and so far is fairly impressed, but one thing that I keep running into is wierd error messages from Clojure. This comes in two forms: Java errors, like null pointer exceptions and in clojure syntax errors, like missing parenthesis pair. I was wondering if anyone know of a way to get better error messages?</p>
<p>Part of it is of course from learning a new language, but improving the error messages can never hurt :)</p>
http://stackoverflow.com/questions/1559701/cms-in-functional-programming-language1CMS in functional programming languagefolone2009-10-13T11:41:38Z2009-11-24T22:43:24Z
<p>Are there any CMS'es, written in functonal programming languages (lisp, haskell, f#/nemerle, scala, erlang, clojure, smalltalk) already?</p>
http://stackoverflow.com/questions/1749340/does-anyone-know-of-a-good-reference-for-dsl-design5Does anyone know of a good reference for DSL design?Doug Knesek2009-11-17T14:41:45Z2009-11-24T21:01:55Z
<p>I've been looking into designing some Domain Specific Languages which I will probably implement in Clojure, but I really don't have any idea of what's involved.</p>
<p>The languages I have in mind are intended to be abstract languages that are readable by domain experts with little or no programming background.</p>
<p>Does anyone know of any tutorials, books, or other references that would be helpful?</p>
http://stackoverflow.com/questions/1768567/how-does-one-start-a-thread-in-clojure3How does one start a thread in Clojure?andrewdotnich2009-11-20T05:49:13Z2009-11-23T05:14:37Z
<p>I've read a lot about how great Clojure is when it comes to concurrency, but none of the tutorials I've read actually explain how to create a thread. Do you just do (.start (Thread. func)), or is there another way that I've missed?</p>
http://stackoverflow.com/questions/257333/clojure-editor-ide-recommendations-on-os-x14Clojure editor/IDE recommendations on OS XJulien Chastang2008-11-02T20:44:52Z2009-11-22T19:03:48Z
<p>I am starting to learn the Clojure programming language. Are there any recommendations for Clojure editors/IDEs on OS X?</p>
<p><strong>Update 2009-9-23</strong>: The clojure space has changed tremendously since I originally posted this question. Many of the links below, especially those that refer to clojure-mode with emacs, are out-of-date. The best clojure IDE I found was the enclojure Netbeans plugin which was recently released (2009-08-25).</p>
http://stackoverflow.com/questions/1776798/clojure-unable-to-resolve-symbol-im-stumped2Clojure: Unable to resolve symbol. I'm stumped.Frederic Daoud2009-11-21T21:12:50Z2009-11-21T23:01:11Z
<p>When I paste this code into a REPL, it works fine:</p>
<pre><code>(use 'clojure.contrib.seq-utils)
(defn- random-letter [] (char (+ (rand-int 26) 97)))
(defn- random-digit [] (rand-int 10))
(defn- random-password
"Returns an 8-character password consisting of letters and digits as follows: aa1aa1aa"
[]
(let [password (interpose '((random-digit)) (repeat 3 (repeat 2 '(random-letter))))]
(apply str (flatten (map (fn [coll] (map eval coll)) password)))))
</code></pre>
<p>Now, I have this code with <code>:gen-class :implements [my.ServiceInterface]</code> and a function prefixed with <code>-</code> to implement the interface. I unit-test with Maven/Groovy/TestNG. Everything works fine with several other interfaces/Clojure implementations, but in this particular case, I get this error:</p>
<pre><code>java.lang.RuntimeException:
java.lang.Exception: Unable to resolve symbol: random-letter in this context (NO_SOURCE_FILE:32)
</code></pre>
<p>I can't figure out why. The only thing I can tell is different in this function from all the other functions, is that this is the only place where I use quoting, i.e. <code>'((random-digit))</code> and <code>'(random-letter)</code>. EDIT: also, this is the only place where I use <code>eval</code>.</p>
<p>I tried defining the functions as "non-private" (<code>defn</code> instead of <code>defn-</code>). I also tried a <code>(declare random-digit random-letter)</code> at the top. Neither of these solves the problem.</p>
<p>On a side note, if you have a suggestion for a better way to implement the <code>random-password</code> function, I am all ears. But I'd still like to know why I am getting this error and how to get this to work.</p>
<p>Many thanks in advance for your help. Clojure is awesome.</p>
<p>Edit: here is the complete code.</p>
<pre><code>(ns fred.hp2010.service.ClojurePoolerService
(:gen-class :implements [fred.hp2010.service.PoolerService])
(:use [clojure.contrib.seq-utils :only (flatten)]))
(def dao (fred.hp2010.persistence.Repository/getDao))
(declare find-by is-taken random-password)
(defn -addPooler [this pooler] (. dao insert "POOLER" pooler))
(defn -getPoolers [this] (. dao list "poolers"))
(defn -isEmailTaken [this email] (is-taken {"email" email}))
(defn -isUsernameTaken [this username] (is-taken {"username" username}))
(defn -login [this email password] (. dao findSingle "POOLER" {"email" email "password" password}))
(defn -changePassword [this email new-password]
(let [updated-pooler (assoc (into {} (find-by {"email" email})) "password" new-password)]
(. dao update "POOLER" "POOLER_ID" updated-pooler)))
(defn -resetPassword [this email]
(let [new-password (random-password)]
(-changePassword this email new-password)
new-password))
(defn- find-by [params] (. dao findSingle "POOLER" params))
(defn- is-taken [params] (not (nil? (find-by params))))
(defn- random-letter [] (char (+ (rand-int 26) 97)))
(defn- random-digit [] (rand-int 10))
(defn- random-password
"Returns an 8-character password consisting of letters and digits as follows: aa1aa1aa"
[]
(let [password (interpose '((random-digit)) (repeat 3 (repeat 2 '(random-letter))))]
(apply str (flatten (map (fn [coll] (map eval coll)) password)))))
</code></pre>
http://stackoverflow.com/questions/1774295/clojure-equivalent-of-erlangs-dets-persistent-maps2Clojure equivalent of Erlang's DETS / Persistent-MapsArthur Ulfeldt2009-11-21T02:19:29Z2009-11-21T17:21:50Z
<p>I'm looking for the equivalent of Erlangs DETS for a persistent key/value store,<br>
except with out DETS 2G table size limit. </p>
http://stackoverflow.com/questions/1774417/scoping-rules-in-clojure5Scoping rules in Clojurekunjaan2009-11-21T03:35:56Z2009-11-21T07:31:44Z
<p>Even though I have used Clojure, I hadn't looked at the scoping rules in detail. I am getting more confused as I read the documentations.
I made a small test to try out the scoping resolutions and am apalled at the complexity. Could somebody explain the intent and various rules that Clojure uses?</p>
<pre><code>(def x 1)
(defn dummy-fn2[]
(+ x 1))
(defn dummy-fn[]
(println "entering function: " x)
(let [x 100]
(println "after let: " x)
(let [x (dummy-fn2)]
(println "after let and dummy2: " x)
(binding [x 100]
(println "after binding: " x)
(let [x (dummy-fn2)]
(println "after binding and dummy2: " x))))))
1:2 foo=> (dummy-fn)
entering function: 1
after let: 100
after let and dummy2: 2
after binding: 2
after binding and dummy2: 101
nil
</code></pre>
http://stackoverflow.com/questions/233171/what-is-the-best-way-to-do-gui-in-clojure13What is the best way to do Gui in Clojure?Dev er dev2008-10-24T11:31:58Z2009-11-20T21:10:11Z
<p>What is the best way to do Gui in Clojure?</p>
<p>Is there an example of some functional swing or SWT wrapper?
Or some integration with javafx declarative gui description which could be easily wrapped to s-expressions using some macrology?</p>
<p>Any tutorials?</p>
http://stackoverflow.com/questions/1147975/in-clojure-when-should-i-use-a-vector-over-a-list-and-the-other-way-around2In Clojure, when should I use a vector over a list, and the other way around?Rayne2009-07-18T16:41:25Z2009-11-19T00:31:20Z
<p>I read that Vectors are not seqs, but Lists are. I'm not sure what the rationale is for using one over the other. It seems that vectors are used the most, but is there a reason for that? Any answers are appreciated, thanks!</p>