File tree Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Original file line number Diff line number Diff line change 134
134
(common/-read-from-cursor (.putCursor wlal i))
135
135
not-found))
136
136
137
- clojure.lang.Associative
138
- (assoc [this k v]
139
- (when-not (integer? k)
140
- (throw (IllegalArgumentException. " Key must be integer" )))
141
- ; ; LinkedArrayList doesn't support random access assoc operations
142
- ; ; This might require a different implementation
143
- (throw (UnsupportedOperationException. " LinkedArrayList doesn't support random access" ))
144
- this)
145
-
146
- (containsKey [this k]
147
- (and (integer? k) (>= k 0 ) (< k (.count wlal))))
148
-
149
- (entryAt [this k]
150
- (when (.containsKey this k)
151
- (clojure.lang.MapEntry. k (.valAt this k))))
152
-
153
137
clojure.lang.ILookup
154
138
(valAt [this k]
155
139
(.valAt this k nil ))
You can’t perform that action at this time.
0 commit comments