aboutsummaryrefslogtreecommitdiff
path: root/package.lisp
blob: 0f5cf89ce219884c58867566ac55f6965a824a9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
;;;; package.lisp

(defpackage #:petty-types
  (:use #:cl)
  (:local-nicknames
   (#:a #:alexandria-2))
  (:export
   #:type-specifier-p                   ; function
   #:optional                           ; deftype
   #:tuple                              ; deftype
   #:vector-of                          ; deftype
   #:sequence-of                        ; deftype
   #:list-of                            ; deftype
   #:table                              ; deftype
   ))