summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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-25fixed test-clojure, refs #144Frantisek Sodomka
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
2009-07-18got rid of LazilyPersistentVector instances, trim tail in immutable, redefed ↵Rich Hickey
vector factory fns in terms of MutableVector
2009-07-18changed to test only for IndexOutOfBoundsException, not ↵Rich Hickey
ArrayIndexOutOfBoundsException
2009-07-18renamed immutable immutable!Rich Hickey
2009-07-17Clojure interface to editable vectors - ↵Rich Hickey
mutable,immutable,conj!,pop!,assoc!,get!,nth!
2009-07-17first cut at mutable vectorRich Hickey
2009-07-16added Var.getThreadBindingsRich Hickey
2009-07-16first cut at mods for batch capabilityRich Hickey
2009-07-14updated tests for range given fractionsRich Hickey
2009-07-14Merge branch 'master' into chunksRich Hickey
2009-07-09move with-precision tests to that section of vars.clj Fixes #137Stephen C. Gilardi
Signed-off-by: Chouser <chouser@n01se.net>
2009-07-09Refs #137: make *math-context* settable, with test + tests of with-precisionStephen C. Gilardi
Signed-off-by: Chouser <chouser@n01se.net>
2009-07-04removed hop in RT.nth, caused head retentionRich Hickey
2009-07-03support overlapping ensures with no retry, refs #143ensureRich Hickey
2009-07-03fix compile-time NPE on set! of non-existent field, fixes #142Rich Hickey
2009-07-01in defn, propagate pre/post conditions written as map trailing arglist to ↵Rich Hickey
metadata on arglist
2009-06-30added ref min/max history control - refs #138Rich Hickey
2009-06-25Test reading of numbers like "1." and "1.e3". Fixes #117Steve Gilardi
Signed-off-by: Chouser <chouser@n01se.net>
2009-06-25made copyright notices uniformRich Hickey
2009-06-25changed test target to "test"Rich Hickey
2009-06-25Merge branch 'gtic' of git://github.com/stuarthalloway/clojure into gticRich Hickey
2009-06-24:pre and :post conditions as metadata on arglist, or map following arglistRich Hickey
conditions are predicate exprs in a vector return value of fn is bound to % for :post (defn foo [x y] {:pre [(even? x) (< x y)] :post [(> % 3)]} (* x y)) add *assert*, default true, when not true asserts are no-ops *assert* is bound in repl
2009-06-24allow %s not in #(), yields as-is symbolRich Hickey
2009-06-24perf tweaks in reduceRich Hickey