File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
src/main/cljs/clojure/data Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ following differences:
5454
55551 . They have transient counterparts:
5656
57- (persistent! (assoc! (transient (avl/sorted-map) 0 0) ))
57+ (persistent! (assoc! (transient (avl/sorted-map)) 0 0))
5858 ;= {0 0}
5959
6060 and use transients during construction:
Original file line number Diff line number Diff line change 22<project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
33 <modelVersion >4.0.0</modelVersion >
44 <artifactId >data.avl</artifactId >
5- <version >0.0.19-SNAPSHOT</version >
5+ <version >0.0.19.1 -SNAPSHOT</version >
66 <name >data.avl</name >
77 <description >Persistent sorted maps and sets with log-time rank queries</description >
88
Original file line number Diff line number Diff line change 697697 (avl-map-reduce (.getLeft node) f init))]
698698 (if (reduced? init)
699699 init
700- (let [init (f init (MapEntry. (.getKey node) (.getVal node) nil )]
700+ (let [init (f init (MapEntry. (.getKey node) (.getVal node) nil )) ]
701701 (if (reduced? init)
702702 init
703703 (if (nil? (.getRight node))
You can’t perform that action at this time.
0 commit comments