Changeset 15149
- Timestamp:
- 11/05/19 13:03:40 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/contrib/jss/collections.lisp
r15146 r15149 207 207 (defun to-hashset (list) 208 208 "Convert LIST to the java.util.HashSet contract" 209 (let ((set (new ' hashset)))209 (let ((set (new 'java.util.hashset))) 210 210 (loop for l in list do (#"add" set l)) 211 211 set))
Note: See TracChangeset
for help on using the changeset viewer.