a batch. While using
"iterate" instead updates "primes" each step.
Can someone more into clojure than me please correct and
better explain internal reasons of this strange behaviour.
How could one know the "batch size" of more complicated
expressions? And how could &
Am Mittwoch, 28. November 2012 16:42:32 UTC+1 schrieb Christophe Grand:
>
> Hi Ulrich,
>
> Wow, you got me scratching my head because your code should not even work.
> The problem I see with it is that your recursion has no base case. You
> have to know that 2 is prime to boot
Now, this is a good such example, where chunking leads to behavioral error.
Has the afore mentioned interface for forced single-item consumption
meanwhile been created?
Ulrich
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to
(drop 3 (range))
)
)
)
SHOULD imho properly work in a proper clojure implementation,
n'est ce pas?
If it doesn't because of internal!!! representation
of the involved sequences,
be it chunked or something else,
than this is a huge pitfall,
which might be hard to
Hello,
Very interesting interview of Stuart Halloway about Clojure by Sadek
Drobi available on QCon website.
Enjoy,
Ulrich VACHON
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroup
Slime supports redirecting the inferior-lisp-output to the repl:
Add
(add-hook 'slime-connected-hook 'slime-redirect-inferior-output)
to your .emacs
On Tue, May 18, 2010 at 4:39 AM, Dave Fayram wrote:
> It doesn't suppress output, it just doesn't propagate it to your repl
> buffer. Check for t
It's also worth to mention that the produced seq is lazy, so you can
work on big images without memory issues.
On Saturday, May 29, 2010, John Cromartie wrote:
>
> This is precisely what 'for' is for in clojure.
>
> For example:
>
> (for [x (range 10) y (range 10)] [x y])
>
> ... produces a seque
If you want to keep this style, why not use a simple map of function
instead of reifying a protocol? Something like:
(defn calc-multiply [data] ...)
(defn calc-add [data] ...)
(defn make-calc [] {:calc-add #'calc-add, :calc-multiply #'calc-multiply})
Looks simpler and cleaner for me.
On Wed, Jun
NixOS, a linux distribution built on a purely functional package
manager at work and at home. Emacs with package.el and ~/.emacs.d/ in
a git repository.
On Fri, Jun 14, 2013 at 3:46 PM, Erlis Vidal wrote:
> Hi,
>
> I'm a bit curious to know in what OS do you code. Do you prefer iOS, Linux,
> Wind
come very
> cumbersome to read :
>
> (cascalog/?<- (cascalog/stdout) [?a ?b] (generator :> ?a ?b))
>
> The same applies to SQL DSLs like korma.
>
> So, IMHO there are cases where (:use) simplifies things.
>
> --
>
> Philippe Guillebert
>
> --
Just use
Just a guess: You put 500 (or so) actions to the internal agent
queue and the agent isn't fast enough to keep up. The queue grows very
fast and goes out of memory.
On Wed, Aug 7, 2013 at 3:09 PM, Jérémie Campari
wrote:
> Hello !
>
> I don't understand why my code raise an Out of memory except
e email went out.
>
> -Phil
>
> --
https://leiningen.s3.amazonaws.com/downloads/leiningen-2.3.0-standalone.jar
is still AccessDenied for me.
--
Moritz Ulrich
--
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send
b.com/leonardoborges/bouncer/blob/master/CHANGELOG.md>
> for
> details.
> Feedback on this version and the new API is greatly appreciated.
>
> Cheers,
> Leonardo Borges
> www.leonardoborges.com
>
> --
--
Moritz Ulrich
--
--
You received this message because you are subsc
The only 'implicit' laziness in Clojure comes from lazy lists. map,
filter, and others are lazy. If you map over a list for side effects,
don't use map, use dolist or wrap the map in a doall.
On Thu, Sep 5, 2013 at 9:28 PM, Kang Tu wrote:
> Hi all,
>
> Clojure something *automatically" removed my
David Nolen writes:
> ClojureScript, the Clojure compiler that emits JavaScript source code.
>
> README and source code: https://github.com/clojure/clojurescript
>
> New release version: 0.0-2719
>
> Leiningen dependency information:
>
> [org.clojure/clojurescript "0.0-2719"]
>
> ClojureScrip
Fluid Dynamics writes:
> On Saturday, January 24, 2015 at 1:43:15 PM UTC-5, Elric Erkose wrote:
>>
>> Hello,
>>
>> I have an app which specifies a protocol and a record name. At runtime, it
>> searches the classpath for files implementing the specification and creates
>> a map of namespace to i
See https://github.com/ring-clojure/ring/wiki/Static-Resources
You should be able to pass '.' signifying the directory your application
was started in (that might NOT be the same place as the jar).
viper110110 writes:
> I would like to be able to serve up files from a folder after the jar has
You need to use `ns-resolve' to resolve the actual vars you want to use.
Here's a snippet from one of our projects which shows the approach:
```clojure
(defn ws-repl []
(require 'cemerick.piggieback
'weasel.repl.websocket)
(let [cljs-repl (ns-resolve 'cemerick.piggieback 'cljs-repl
Also keep in mind that a dynamically-bound variable is global state,
even if it's unbound by default. You might want to keep your library as
simple and possible and just pass it as the first argument. That also
greatly simplifies usage with Stuartsierra's component design.
A `with-connection' mac
Use map. for produces permutations.
Am 27.06.2014 17:02 schrieb "Glen Rubin" :
> I have a list that I want to combine in some way with an incremented list,
> so I was trying to write a for expression like this:
>
> (for [i '(my-list-of-crap), j (iterate inc 0)] (str i j))
>
>
> The problem with th
gt;>
>>
>
> --
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with your
>
Hello,
I'm getting the following error while working on a Clojure(Script) REPL
on a middle-sized project after some time. None of my colleagues seem to
be able to reproduce it. I'm not able to reproduce it on other projects
either.
Caused by: java.lang.OutOfMemoryError: PermGen space,
compiling
Abhinav Gogna writes:
> (defn run-in-parallel
> "run-in-parallel runs 500 different threads.
> you can give each thread number of files you want to generate
> Eg: run-in-parallel 100 will generate 500*100 = 5 files"
> [y]
> (dotimes [_ 500]
> (future
> (.start (Thread. (run-me y
Yuri Govorushchenko writes:
> Thank you the pointers! So far I ended up with writing a small `map` macro
> which is similar to `s/keys` but checks that keys are already in the
> registry:
> https://gist.github.com/metametadata/5f600e20e0e9b0ce6bce146c6db429e2
Note that you can simply combine
Rob Nikander writes:
> Thanks for the explanation! This is very close to what I want. I see some
> confusing behavior though. See below.
>
> On Friday, January 5, 2018 at 2:40:14 PM UTC-5, Brian J. Rubinton wrote:
>>
>>
>> The work-queue channel has a fixed buffer size of 1. A collection (range
All -
I'm trying to generate a lazy sequence of primes using Erastosthenes Sieve
(from Abelson & Sussman) and am encountering some issues with lazy sequence.
Here's what I have:
---
(defn divisible?
[input numerator]
(= 0 (mod input numerator)))
(defn sieve
[stream]
(lazy-seq
(con
range-peek
> (filter (partial prime? primes))
> first)]
> (cons p (lazy-seq (sieve (conj primes p)))
>
> (last (take 1 (sieve)))
>
> This version keeps the visited primes in a vector so it will grow in
> memory but won’t overfl
On Sat, Feb 8, 2014 at 6:39 PM, Timothy Baldridge wrote:
> First of all, you are right. Map with things like sets is a bit of iffy
> concept. Now, most of the the time, I just don't care. If I was to increment
> every value in a set I'll just do (set (map inc #{1 2 3})) and not really
> care less
]core.clj:25
> compojure.core/if-method[fn]core.clj:107compojure.core/routing[fn]
> core.clj:2443clojure.core/somecore.clj:107compojure.core/routing
>
> Does anyone have any experience with this lib and the correct way to employ
> it, I'm not making much progress from the readme docs. Thanks.
--
Moritz Ulrich
pgpzSjHvaFY_D.pgp
Description: PGP signature
In addition to all the other message here please note, that it's very
helpful to build a site with just http-kit, hiccup and compojure,
which are all three independent components. This gives you the freedom
to structure your application however you like without getting in your
way like many framewo
Om is well-suited to handle the UI-part for you. It doesn't do any
server communication or forces you into any particular programming
style or project layout.
On Thu, Feb 27, 2014 at 2:35 AM, Mark Engelberg
wrote:
> As far as I can tell, neither luminus nor caribou are well-suited to
> building,
Another great talk about techniques used to structure bigger
applications is "Clojure in the Large" by Stuart Sierra. I think it
might be a bit premature if you're just getting started, but it's
definitely useful:
http://www.infoq.com/presentations/Clojure-Large-scale-patterns-techniques
On Sat, M
I think it would be more efficient to read one of the inputs into a
map for random access instead of iterating it every time.
On Sun, Mar 9, 2014 at 4:48 PM, Timothy Washington wrote:
> Hey Frank,
>
> Try opening up a repl, and running this for comprehension.
>
> (def user_textfile [[:id1 {:name
It might actually be counter-productive to learn Common Lisp before
Clojure, as Clojure is so much simpler easier to learn/understand than
Common Lisp.
On Mon, Mar 10, 2014 at 4:52 PM, Dennis Haupt wrote:
> you can learn clojure without learning lisp first :)
>
>
> 2014-03-10 15:41 GMT+01:00 Roel
If so,
take a look at `file-seq':
http://clojuredocs.org/clojure_core/clojure.core/file-seq
Passed a java.io.File pointing to a directory, it gives you a sequence
of file objects in it and all its subdirectories.
To get a list of all files ending in .jar in the current directory:
`reduced' was added in 1.5. It looks like 4clojure is using an older
version.
On Wed, Mar 19, 2014 at 5:44 PM, Andy Smith wrote:
> Hi,
>
> Ive been looking at http://www.4clojure.com/problem/137 and I have a
> solution :
>
> (fn [x b] (reduce #(let [r (quot x %2) d (mod r b)] (if (zero? r) (redu
erformance penalty on state-changes should be negligible
as long as React doesn't need to modify the DOM.
--
Moritz Ulrich
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
N
>>>> Groups "Clojure" group.
>>>> To post to this group, send email to clojure@googlegroups.com
>>>> Note that posts from new members are moderated - please be patient with
>>>> your first post.
>>>> To unsubscribe from this group, send email to
>>>> clojure+unsubscr...@googlegroups.com
>>>> For more options, visit this group at
>>>> http://groups.google.com/group/clojure?hl=en
>>>> ---
>>>> You received this message because you are subscribed to the Google Groups
>>>> "Clojure" group.
>>>> To unsubscribe from this group and stop receiving emails from it, send an
>>>> email to clojure+unsubscr...@googlegroups.com.
>>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Clojure" group.
>>> To post to this group, send email to clojure@googlegroups.com
>>> Note that posts from new members are moderated - please be patient with your
>>> first post.
>>> To unsubscribe from this group, send email to
>>> clojure+unsubscr...@googlegroups.com
>>> For more options, visit this group at
>>> http://groups.google.com/group/clojure?hl=en
>>> ---
>>> You received this message because you are subscribed to the Google Groups
>>> "Clojure" group.
>>> To unsubscribe from this group and stop receiving emails from it, send an
>>> email to clojure+unsubscr...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
--
Moritz Ulrich
pgp5NE2maqqks.pgp
Description: PGP signature
symbol.
You start with the symbol +. The function `(ns-resolve ns sym)' will
try to find a var in `ns' with the same name as `sym' and return it.
In the end, you want to call the function behind the var, so you have to
use `var-get' to get the value the var points to.
--
Moritz Ulrich
pgphkZl7qIu1U.pgp
Description: PGP signature
The data type created by defstruct isn't anything more than a map
which can store the specified fields a bit more efficient than
'normal' maps. You can just `assoc' any other key-value pairs as in
any other map.
Also, have a look at records - I think StructMaps have been deprecated
(or at least ar
You are likely passing a string to the function, not a java.io.File object.
On Thu, Mar 27, 2014 at 1:16 AM, Brandon Barret wrote:
>
> I am working on a project that requires me to get the size of a file and
> access it's last date of modification. It seems like the java methods
> .length and .
Checking out a project your project depend on, finding the right
version, etc. is quite cumbersome.
With Emacs/nrepl, you can just press M-. over any function to jump to
the definition, even when it's inside a jar.
You can also edit and reload it (via C-c C-c). I don't think you can
save it, but t
What on this page would solve your problem? I just see
Generators/Iterators, Array Comprehensions, lexical let and
destructuring assignment.
On Wed, Apr 9, 2014 at 9:39 AM, t x wrote:
> I believe
> https://developer.mozilla.org/en-US/docs/Web/JavaScript/New_in_JavaScript/1.7
> suffices.
>
> Howe
A simple repl-targeted library to introspect classes might prove
useful, but is there any reason to use such a short syntax for
everything? I'll surely have problems remembering the symbols.
On Fri, Apr 11, 2014 at 5:57 AM, zcaudate wrote:
> Please use 0.1.10 update. clojure 1.6 does not load clo
Really depends on that you want. First thing coming to my mind is:
(for [l (:langs langs)
[k v] l]
(str k " " v))
This will give you a flat lazy list of strings.
On Mon, Apr 21, 2014 at 5:32 PM, Hussein B. wrote:
> Hi,
>
> For a data structure such as:
>
> (def langs {:langs [ {:lang "C
This snippet is wholly incomplete. Can you please provide a more
complete, testable example as well as a detailed description of the
error you're seeing?
On Tue, Apr 22, 2014 at 4:48 PM, Cecil Westerhof wrote:
> Obvious not very neat, but I tried as a first hack to do something with the
> command
Could it be that 0.6.1 doesn't trigger a re-render of a component when
just `:opts' has changed? I have a parent component with passes a
boolean (`:selected?') down to it's children in the `:opts'-map.
The parent-component's `render' is called, but the children's isn't anymore.
I understand that t
Hi,
what is the preferred way to find sub-seqs in a seq? I am trying to convert
[:a :b :c :d :a :b :c :d :a :b :c]
into
((:a) (:b :c) (:a :d) (:b :c) (:a))
using the sub-seq (:b :c) instead of positions.
partition, partition-by and the like all look at one element at a time.
What I need is a
>>> more)))]
>>> (or (step coll) (
>>>
>>> => (partition-by-seq [:b :c] [])
>>>
>>> ()
>>>
>>> => (partition-by-seq [:b :c] [:a :d])
>>>
>>> ((:a :d))
>>>
>>> => (partiti
elp them much but Clojure would help them a lot
>
> (+ 1. 2.) →
> 3. They want to learn Clojure ! ☺
>
> I'd be most grateful for any help, either to complete/amend my list in 1.,
> or to provide ideas for 2.
>
>
> Best Regards,
>
> B.
>
> --
--
Moritz Ulrich
pgpcWyTfKFXAJ.pgp
Description: PGP signature
On Fri, Oct 11, 2013 at 11:33 PM, n aipmoro wrote:
> I have to hit the TAB key after ENTER to get indentation. I can't believe
> that was intentional (famous last words). So something must've broke.
Actually, the common Emacs convention is that RET (command: `newline')
shouldn't indent. C-j is `n
Wait, RET should probably get bound to `paredit-newline' instead of
`newline-and-indent' when paredit is enabled. Try both and see which
works better :-)
On Sat, Oct 12, 2013 at 12:40 AM, Moritz Ulrich wrote:
> On Fri, Oct 11, 2013 at 11:33 PM, n aipmoro wrote:
>> I have
Leiningen profiles in ~/.lein/profiles.clj will be merged into the
current project.clj by leiningen. Also dumented in
https://github.com/technomancy/leiningen/blob/stable/doc/PROFILES.md
On Mon, Nov 25, 2013 at 3:34 PM, Dave Tenny wrote:
> With all my attention on trying to learn things about clo
hen following the React tutorial.
I really look forward to using this library for some private and
(hopefully) work-related projects in the future.
Cheers!
--
Moritz Ulrich
pgpAxW_2KmKeQ.pgp
Description: PGP signature
On Tue, Jan 21, 2014 at 9:43 AM, Aaron France wrote:
> Since channels yield nil when they are devoid of items, surely this is enough
> to know when the channel is empty?
That's not correct. Take-Operations block on empty channels. They
yield nil when they're closed. You could add a timeout to th
ng a trivial macro to make it look a bit
cleaner.
It's more or less the same for `with-open'.: You could just write the
(let [...] (try ... (finally ...))) yourself, but it's much easier to
understand the purpose when you read `with-open'.
--
Moritz Ulrich
pgpZyu7NHe8M4.pgp
Description: PGP signature
On Sun, Jan 26, 2014 at 10:10 PM, Mimmo Cosenza wrote:
> You could clone and deploy it yourself into clojars. The only caveat is to
> give it an org.clojars. as group-id to make it clear it's not
> the official one.
Please don't deploy a project to the public clojars repository for
such purposes.
C-u M-x indent-pp-sexp
On Thu, Feb 14, 2013 at 6:06 PM, Mayank Jain wrote:
> @Feng
> It doesn't clean up the way John is looking to clean some code like this:
>
>
>> (defun func1 [a b c d] (func5 (let [f (func3 c)] (func2 a b f)) (let
>> [e 5] (func4 c d e
>
>
>
>
> On Tue, Feb 12, 2013 at 9:
Just a shot in the dark; try:
#+BEGIN_SRC clojure
(defun org-xor (a b)
"Exclusive or."
(if a (not b) b))
#+END_SRC
On Sat, Mar 23, 2013 at 10:27 PM, Matching Socks wrote:
> I've got clojure-mode and nrepl installed, but I skipped Slime. From the
> org-mode s
I haven't played around with the new additions to core.logic, but it
seems to me that != only works for values, not for lvars.
On Thu, Mar 28, 2013 at 1:11 AM, JvJ wrote:
> The function i wrote below isn't working. (is-drink q) returns all drinks
> (I tested it), but hates-drink, which should re
Expansion: Sorry, I seem to be wrong:
=> (doc !=)
clojure.core.logic/!=
([u v])
Disequality constraint. Ensures that u and v will never
unify. u and v can be complex terms.
On Thu, Mar 28, 2013 at 7:55 PM, Moritz Ulrich wrote:
> I haven't played around with the new a
Can you please show your implementation of the other functions?
On Thu, Mar 28, 2013 at 1:11 AM, JvJ wrote:
> The function i wrote below isn't working. (is-drink q) returns all drinks
> (I tested it), but hates-drink, which should return all drinks that aren't
> liked, doesn't return anything...
It's also nice for printing on paper. Ink is expensive.
On Sun, May 5, 2013 at 6:49 PM, Michał Marczyk wrote:
> On 5 May 2013 15:19, Simone Mosciatti wrote:
>> It is probably me being stupid, but WHY ?
>
> Much easier to maintain your code when you can touch it without
> risking it soiling your
On Sunday, June 6, 2010, Dave Pawson wrote:
> On 6 June 2010 11:00, Kevin Downey wrote:
>> numerator is added after 1.1.0 was released
>
> Thanks Kevin.
> documentation ahead of software! Nice change.. if confusing!
Note the "Added in Clojure version 1.2" in the documentation of numerator ;-)
-
isLetter accepts single characters, you gave it a string with a length of one.
The error is caused by reflection when clojure searches for a function
with the signature isLetter(String)
On Monday, June 7, 2010, AJ Sterman wrote:
> (Character/isLetter "x")
> # method found: isLetter (NO_SOURCE_FI
I'm not sure if this is related, but in recent Snapshots of
clojure-http-client, the namespace was renamed to clojure-http.client.
This was a small issue with my fork from clojure-couchdb.
(I think clojure-http-client really needs a stable release for clojure 1.1.0)
On Wed, Jun 9, 2010 at 7:31 PM
uot;Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with your
> first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For mo
en
>
> --
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with your
> first post.
> T
scribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
--
Moritz Ulrich
Programmer, Student, Almost normal Guy
http://www.google.com/profiles/ulrich.moritz
--
You receiv
send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
--
Moritz Ulrich
Programmer, Student, Almost normal Guy
http://www.google.com/profiles/ulrich.moritz
--
You received this message because yo
You can use (with-out-str &body) to capture the output or prxml to a
string and write that string to a file.
On Sat, Jun 12, 2010 at 8:53 PM, Emeka wrote:
> Could someone direct me on how to write the output of prxml form to a file?
--
Moritz Ulrich
Programmer, Student, Almost nor
are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with your
> first post.
> To unsubscribe from this group, send email to
> clojur
be it's done to prevent problems when the function the
currently-active agent sent to another agent depends on the value of
the original agent.
On Sat, Jun 12, 2010 at 9:43 PM, Moritz Ulrich
wrote:
> I'm not sure why it's doing this, but I read about this in the api
> documenta
chDB (which we abuse as a message queue, among
>> other things)
>
> Can you comment on the choice of Clutch over clojure-couchdb? I've
> found clojure-couchdb to be reliable and straightforward. the-kenny's
> (Moritz Ulrich) branch is being actively maintained and he&
someone with a deeper understanding of the var-internals take a
look at my code and tell me if it's okay to do that like this? It
looks a bit "hacky" for me...
Thanks for your answers.
--
Moritz Ulrich
Programmer, Student, Almost normal Guy
http://www.google.com/profiles/ulrich.
clojure+unsubscr...@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/clojure?hl=en
>
> --
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to c
, Jun 13, 2010 at 7:40 PM, Meikel Brandmeyer wrote:
> Hi,
>
> Am 13.06.2010 um 18:31 schrieb Moritz Ulrich:
>
>> Thanks for your answers.
>
> Wouldn't it be more appropriate to have a *server* Var, which is allowed to
> be rebound by the user? The function can
abase-list (concat "http://";
"localhost" ":5984"))]
(database-list))
On Sun, Jun 13, 2010 at 9:36 PM, Meikel Brandmeyer wrote:
> Hi,
>
>
> On 13 Jun., 19:55, Moritz Ulrich wrote:
>
>> This was in the original branch of the clojure-couchdb-projec
Sorry for the second mail - I've just improved the macro so server is
only evaluated once (It's side-effect save now)
On Sun, Jun 13, 2010 at 9:50 PM, Moritz Ulrich
wrote:
> Huh? I don't see why I wire server at macro expansion time. You can
> pass a variable and it
ew server in production (yet?)).
>
> - Chas
>
> On Jun 13, 2010, at 11:57 AM, Moritz Ulrich wrote:
>
>> Yup, I would like to know why you chose clutch over clojure-couchdb
>> too. (I don't want to insinuate that clojure-couchdb is the better
>> lib)
; Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with your
> first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> F
embers are moderated - please be patient with your
> first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
--
Moritz Ulrich
Programmer, Student, Alm
17:13.
>
> --
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with your
> first post.
with your
> first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
--
Moritz Ulrich
Programmer, Student, Almost normal Guy
http://www.google.com/profile
hat's not what metadata is for. (Ignore
this if I misunderstand you)
--
Moritz Ulrich
Programmer, Student, Almost normal Guy
http://www.google.com/profiles/ulrich.moritz
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this
patient with your
> first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
--
Moritz Ulrich
Programmer, Student, Almost normal Guy
http://www.google.c
ups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
--
Moritz Ulrich
Programmer, Student, Almost normal Guy
http://www.google.com/profiles/ulrich.moritz
--
You received this message because you are subscribed to the Google
Groups "Clojure&q
I think it's by-design, but I might be wrong.
On Tue, Jun 29, 2010 at 11:01 PM, Daniel Gagnon wrote:
> Is it by design or it just doesn't implement it yet?
>
> On Tue, Jun 29, 2010 at 4:14 PM, Moritz Ulrich
> wrote:
>>
>> I think record doen't i
t; group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with your
> first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, vi
om/group/clojure?hl=en
>
> --
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with you
st.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
--
Moritz Ulrich
Programmer, Student, Almost normal Guy
http://www.google.com/profiles/ulrich.moritz
--
You rec
at posts from new members are moderated - please be patient with your
> first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
--
Moritz Ulrich
Programmer, Student, A
Why does (transient #{}) works, but transient (sorted-set []) fails
with an exception:
clojure.lang.PersistentTreeSet cannot be cast to
clojure.lang.IEditableCollection
[Thrown class java.lang.ClassCastException]
--
Moritz Ulrich
Programmer, Student, Almost normal Guy
http://www.google.com
groups.com
> Note that posts from new members are moderated - please be patient with your
> first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
-
scribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
--
Moritz Ulrich
Programmer, Student, Almost normal Guy
http://www.google.com/profiles/ulrich.moritz
--
You received
having good documentation and
>> > >> examples available directly in your development environment. I'm not
>> > >> sure what a reasonable alternative would be for that context other
>> > >> than having the examples and docs included (or at l
language.
--
Moritz Ulrich
Programmer, Student, Almost normal Guy
http://www.google.com/profiles/ulrich.moritz
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts f
ent with your
> first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
--
Moritz Ulrich
Programmer, Student, Almost normal Guy
http://www.google.co
, visit this group at
> http://groups.google.com/group/clojure?hl=en
--
Moritz Ulrich
Programmer, Student, Almost normal Guy
http://www.google.com/profiles/ulrich.moritz
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to th
; group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with your
> first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this
1 - 100 of 200 matches
Mail list logo