git.fiddlerwoaroof.com
collection-class.asd
c7fb3949
 ;;;; collection-class.asd
1a84f71f
 
 (asdf:defsystem #:collection-class
   :description "Defines a macro for declaring a class that is a collection of another class"
   :author "Edward Langley <el@elangley.org>"
   :license "MIT"
   :depends-on (#:alexandria
                #:for
                #:serapeum
                )
   :serial t
   :components ((:file "package")
                (:file "collections")
                (:file "collections-for")
                #+sbcl
                (:file "collections-sbcl-iterators")
                ))