summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2009-08-26fix bug w/ dissoc on HashCollisionNodeChristophe Grand
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-08-26transient assocChristophe Grand
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-08-26replace instecof tests by null testsChristophe Grand
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-08-26made ArrayNode not leaflessChristophe Grand
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-08-26fixed count updateChristophe Grand
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-08-26first cut at a leafless, not always packed PersistentHashMapChristophe Grand
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-08-24Add support for chunked seqs to 'for'. Refs #1Chouser
2009-08-24Add chunked seq support to concatChouser
concat is defined early, so I moved the the chunk fns up which required changing 'chunk-cons' to use static methods directly instead of core fns. Refs #1
2009-08-24delay seq on chunk-rest in doseqChouser
doseq was calling seq on chunk-rest too early. When combinded with chunked concat this caused some laziness tests to fail. Refs #1
2009-08-23switched wait/notify to countdown latchRich Hickey
2009-08-20Merge branch 'lazychain'Rich Hickey
2009-08-20fix interleave not fully lazyRich Hickey
2009-08-19Add chunked seq support to doseq, v2. Refs #1Chouser
2009-08-19make clojure.lang.Keyword Serializable, fixes #174Chas Emerick
Signed-off-by: Chouser <chouser@n01se.net>
2009-08-19inline nth with not-foundRich Hickey
2009-08-06re-enable writable locals for letfnRich Hickey
2009-08-05replace copyOf with arrayCopyRich Hickey
2009-08-05fix count update on dissocChristophe Grand
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-08-05moved ensureEditable() assertions to ATransientMapChristophe Grand
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-08-05added TransientArrayMapChristophe Grand
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-08-05extracted ATransientMap from TransientHashMapChristophe Grand
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-08-05changed return type for persistent() in ITransientMapChristophe Grand
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-08-05static factory methods now use transientsChristophe Grand
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-08-05First cut at TransientHashMapChristophe Grand
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-08-05define ITransientMapChristophe Grand
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-08-03renamed mutable -> transient, immutable! -> persistent!Rich Hickey
2009-08-03Merge branch 'chunks' into merge-chunksRich Hickey
2009-08-03fix commute after setRich Hickey
2009-08-03merge ensureRich Hickey
2009-08-03fixes commute after setChristophe Grand
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-08-02refactor so mutable vectors support ordinary read functions: ↵chunksRich Hickey
get/count/nth/function-call, with thread safety check
2009-08-02enforce single-threaded use of mutable vector, prevent use after immutble callRich Hickey
2009-08-01added support for volatiles in new newRich Hickey
(let [a 42 b 21] (new [supers] this {:volatile [a]} (foo [] ... (set! a 13) ...)))
2009-08-01fix maybePrimitiveEpr to test for canEmitPrimitiveRich Hickey
2009-07-31switch future-call and promise to new newRich Hickey
2009-07-31handle long and double method argsRich Hickey
2009-07-30added signature inference, overload detectionRich Hickey
2009-07-30unbox to gen checkCast on non-primitive returnsRich Hickey
2009-07-30allow primitive to flow out of bodyRich Hickey
2009-07-30correct types for method paramsRich Hickey
2009-07-30better error message from boxArgRich Hickey
2009-07-29first cut at new new, everything must be fully hintedRich Hickey
2009-07-27refactoring for new newRich Hickey
2009-07-26fixed keyword ctor, added tests, fix #154Steve Gilardi
Signed-off-by: Chouser <chouser@n01se.net>
2009-07-25Resolve classnames in modern-syntax static calls at syntaxQuote time. Fixes #155Chouser
Signed-off-by: Chouser <chouser@n01se.net>
2009-07-25Move metadata in vector-zip and seq-zipMeikel Brandmeyer
Fixes #134 Signed-off-by: Chouser <chouser@n01se.net>
2009-07-24fix deliver set/release orderRich Hickey
2009-07-20prevent vec from creating arrays from CollectionsRich Hickey
2009-07-19Merge commit 'cfd61fac760eda65bd0a8236f4f799c99e96681c' into addchunksRich Hickey
2009-07-18redef into with batch supportRich Hickey