An optimized 1-dimensional array of fixnums that automatically re-adjusts in size.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
(in-package #:cl-user) |
|
|
|
(defpackage #:dynamic-array |
|
(:local-nicknames |
|
(#:u #:mfiano-utils)) |
|
(:use #:cl) |
|
(:shadow |
|
#:aref |
|
#:fill-pointer |
|
#:find |
|
#:length |
|
#:make-array |
|
#:map |
|
#:pop |
|
#:push) |
|
(:export |
|
#:aref |
|
#:copy |
|
#:dynamic-array |
|
#:find |
|
#:length |
|
#:make-array |
|
#:map |
|
#:pop |
|
#:push))
|
|
|