summaryrefslogtreecommitdiff
path: root/src/jvm
AgeCommit message (Collapse)Author
2008-03-12prevent nested #()s, dump input stream on repl exception, put cause message ↵Rich Hickey
first
2008-03-12improved error message for bad arityRich Hickey
2008-03-11added flush and read-lineRich Hickey
2008-03-11fixed bug in ASeq toArray(Object[])Rich Hickey
2008-03-11bind source paths when reading boot scripts from jar, switched to Clojure's ↵Rich Hickey
box from ASM's in proxy in order to handle booleans correctly
2008-03-10fixed ns prefix on fns - now clojure.fns.Rich Hickey
2008-03-10fixed fn name propagation, added cljfn namespace segment prefix on all ↵Rich Hickey
generated fns
2008-03-08keep tail out of tree, speeding up cons/popRich Hickey
2008-03-07made munge public, upped SMAP range to 10000Rich Hickey
2008-03-05renamed PersistentHashMap.INode.seq to nodeSeq to avoid override of ↵Rich Hickey
AMapEntry.seq in Leaf
2008-03-05fixed MapEntry.seq to use AMapEntry.seqRich Hickey
2008-03-04fixed hash-set of empty coll/nilRich Hickey
renamed select select-keys renamed set to ref-set renamed to-set to set, returns a set now added set.clj, set operations and 'relational' algebra
2008-03-04fixed bug with nested try blocksRich Hickey
2008-03-04sets - read/print/compile/metadata, hash-set, sorted-set, disjRich Hickey
2008-03-03starting set supportRich Hickey
2008-03-03added EnumerationSeq and support for Enumerations in seqRich Hickey
2008-03-03added SeqEnumerationRich Hickey
2008-03-02added destructuring to loopRich Hickey
2008-03-01unified map entry and vector equality and hashRich Hickey
support conj of vector pair onto map
2008-03-01made map entries vectorsRich Hickey
2008-03-01proxy support, Rich Hickey
auto-load xml.clj, zip.clj and proxy.clj from clojure.jar
2008-02-28added var?, special-symbol?, and changed resolve to return nil if not foundRich Hickey
2008-02-27started concrete proxy supportRich Hickey
2008-02-26try using getContextClassLoader as defaultRich Hickey
2008-02-23added RT.var() helper, made CLOJURE_NS and CURRENT_NS publicRich Hickey
2008-02-22completed docsRich Hickey
2008-02-21allow use of not-yet-existing names qualified with current namespace when ↵Rich Hickey
internNew
2008-02-21get now returns nil on non-mapsRich Hickey
2008-02-21fixed access on helpers, contains? now returns false on non-mapsRich Hickey
2008-02-21avoid unread(-1)Rich Hickey
2008-02-21more docsRich Hickey
2008-02-18command line args can follow '--', in Repl and ScriptRich Hickey
2008-02-15added anonymous fn reader syntax and arg literalsRich Hickey
2008-02-13added field names to error messagesRich Hickey
2008-02-12added re-groups and use in re-seq and re-matchesRich Hickey
2008-02-12added re-seq, re-matches, nth support for matcherRich Hickey
2008-02-12added compiled regex literals via #"pattern"Rich Hickey
2008-02-11renamed fn and let special ops to fn* and let*. Made fn and let macros, ↵Rich Hickey
which, by the end of boot.clj, do destructuring, as do all macros which emit them.
2008-02-11added nth support for Map.EntryRich Hickey
2008-02-08renamed ns-exports ns-publicsRich Hickey
2008-02-08var metadataRich Hickey
2008-02-06added seq support and inspector support for Java MapsRich Hickey
2008-02-06added default handling of equals, toString and hashCodeRich Hickey
2008-02-05fixed maybeClass when passed ClassRich Hickey
2008-02-05moved boot.clj load to RT.init()Rich Hickey
2008-02-04added get and contains support for strings and arrays, treating as ↵Rich Hickey
associative, keyed by index, like vectors
2008-02-04prevent access to non-exported macro from other nsRich Hickey
2008-02-03added count, nth support for strings, Java Collections and arrays, get and ↵Rich Hickey
contains? support for Java Maps
2008-02-03removed binding injection in let [x (fn ... and added optional anonymous ↵Rich Hickey
function name binding (fn name [args] ...)
2008-02-01fixed subvec assoc at endRich Hickey