summaryrefslogtreecommitdiff
path: root/src/clj
AgeCommit message (Collapse)Author
2009-07-24fix deliver set/release orderRich Hickey
2009-07-20prevent vec from creating arrays from CollectionsRich Hickey
2009-07-18redef into with batch supportRich Hickey
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-14Merge branch 'master' into chunksRich Hickey
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-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-25made copyright notices uniformRich 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-24perf tweaks in reduceRich Hickey
2009-06-24perf tweaks in map/filter/reduceRich Hickey
2009-06-24gtic package renamings:Stuart Halloway
- clojure.contrib to clojure - clojure.test-is to test
2009-06-24gtic work-in-progress:Stuart Halloway
test libraries moved over tests moved over build broken (next commits will break dependencies)
2009-06-21core: make every? return false instead of nilJarkko Oranen
Refs #71 Signed-off-by: Chouser <chouser@n01se.net>
2009-06-20made range chunkedRich Hickey
2009-06-20made reduce chunk-awareRich Hickey
2009-06-20made filter chunk-awareRich Hickey
2009-06-20add optional pad argument to partition. Fixes #120Dimitry Gashinsky
Signed-off-by: Chouser <chouser@n01se.net>
2009-06-19Bring documentation for 'require up to dateJarkko Oranen
Signed-off-by: Chouser <chouser@n01se.net>
2009-06-19add an optional encoding argument to slurp. Fixes #125Chas Emerick
Signed-off-by: Chouser <chouser@n01se.net>
2009-06-18Added IChunk, chunk fns, made map chunk awareRich Hickey
2009-06-12added more future fns, fixed print of pending futures, added promise/deliverRich Hickey
2009-05-29backed out count inliningRich Hickey
2009-05-28perf tweaks to count, nthRich Hickey
2009-05-27get rid of root classloader. Establish dynamic context classloader for repl ↵Rich Hickey
thread. Default true for *use-context-classloader*
2009-05-25switched binding to use let instead of doRich Hickey
2009-05-16do unrolls at top-levelRich Hickey
2009-05-13steps in improving modularity - moving classname resolution towards consumer ↵Rich Hickey
in: ns - wraps require and use calls in with-loading-context
2009-05-08first steps in improving modularity - moving classname resolution towards ↵Rich Hickey
consumer in: new, static calls, class literals and import. Note import is now a macro (but tolerant of quotes for backwards compatibility)
2009-05-04move trunk to 1.1Rich Hickey
2009-05-041.0.0 baselineRich Hickey
2009-04-28copy versioned jars to unversioned on build, patch from Rich Hickey
laurent.petit made :major :minor :incremental parts of *clojure-version* integers
2009-04-27added support for versioned builds, alignment with *clojure-version*, ↵Rich Hickey
(clojure-version) function. Note this will create jars with names like: clojure-1.0.0-RC1-SNAPSHOT.jar [issue 110], patch from laurent.petit
2009-04-27got rid of assert-if-lazy-seq, if*, and if as macroRich Hickey
2009-04-27reduced promise for closed-over clearing in lazy-seq and delay, better error ↵Rich Hickey
msg in condp, added stream?, support for streams in sequence, tweaks to Stream (streams still not for public use)
2009-04-21added *clojure-version*Rich Hickey
2009-04-19fixed doc for enumeration-seqRich Hickey
2009-04-14clojure.main should exit with non-zero code on unhandled exceptions [issue 106]Rich Hickey
2009-04-12:post-init option for gen-class [issue 45], patch from ChouserRich Hickey
2009-04-12flag to control eval reader (*read-eval*) [issue 34], patch from jhawk28Rich Hickey
2009-04-12use column labels instead of names in resultset-seq, and validate unique ↵Rich Hickey
[issue 33]
2009-04-12:exposes should expose static fields as static methods [issue 2], patch from ↵Rich Hickey
Chouser
2009-04-10fixed doc for rand [issue 91]Rich Hickey
2009-04-10proxy: NPE for unresolved class [issue 102]Rich Hickey
2009-04-09pass defmethod names to MultiFns and use in error reportingRich Hickey
2009-04-01added get-methodRich Hickey
2009-03-19fixed zip/remove when empty branch - patch from cgrandRich Hickey