summaryrefslogtreecommitdiff
path: root/src/clj
AgeCommit message (Collapse)Author
2009-10-28Preserve test var metadata within deftest. Fixes #201.Phil Hagelberg
Signed-off-by: Chouser <chouser@n01se.net>
2009-10-28Don't repeatedly compose on calls to use-fixtures. Fixes #194.Phil Hagelberg
Updated tests and added a docstring to use-fixtures. Signed-off-by: Chouser <chouser@n01se.net>
2009-10-28added sorted-set-by, adapted from timothypratley's patch, fixes #79Chas Emerick
Signed-off-by: Chouser <chouser@n01se.net>
2009-10-28first cut at defclass/deftypeRich Hickey
2009-10-24limit to interfaces, refactoringRich Hickey
2009-10-22Merge branch 'master' into newRich Hickey
2009-10-16Implement take-last Fixes #151Chouser
2009-09-28Fix compare doc defect - fixes #189unknown
Signed-off-by: Chouser <chouser@n01se.net>
2009-09-28implemented TransientHashSet Fixes #173Christophe Grand
Signed-off-by: Chouser <chouser@n01se.net>
2009-09-28fix #171: ns reflection warnings, and others that are easyMike Hinchey
Signed-off-by: Chouser <chouser@n01se.net>
2009-09-28Added public thread-local bindings interfaceMeikel Brandmeyer
Added push-thread-bindings, pop-thread-bindings and get-thread-bindings to interface with clojure.lang.Var for thread-local bindings. Modified binding to use the new interface. Fixes #169 Signed-off-by: Chouser <chouser@n01se.net>
2009-09-28core.clj: binding doc string now says it's parallel, fixes #152Stuart Sierra
Signed-off-by: Chouser <chouser@n01se.net>
2009-09-22added ->>Rich Hickey
2009-09-12proxy now caches generated classes per namespace and include a hash to ↵Christophe Grand
distinguish proxy classes implementing homonymous interfaces. Fixes #181 Signed-off-by: Chouser <chouser@n01se.net>
2009-08-29fix juxtRich Hickey
2009-08-29added juxt, juxt[aposes] fns and retuns a fn that returns vector of their ↵Rich Hickey
results
2009-08-29added arity overloads to applyRich Hickey
2009-08-29added arity overloads to list*Rich Hickey
2009-08-29added arity overloads to compRich Hickey
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-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-19inline nth with not-foundRich Hickey
2009-08-05First cut at TransientHashMapChristophe 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-02refactor so mutable vectors support ordinary read functions: ↵chunksRich Hickey
get/count/nth/function-call, with thread safety check
2009-07-31switch future-call and promise to new newRich Hickey
2009-07-26fixed keyword ctor, added tests, fix #154Steve Gilardi
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-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>