aboutsummaryrefslogtreecommitdiffhomepage
path: root/package.lisp
diff options
context:
space:
mode:
authorColin Okay <cbeok@protonmail.com>2020-07-08 07:27:10 -0500
committerColin Okay <cbeok@protonmail.com>2020-07-08 07:27:10 -0500
commitf954ae2233021c38f340f09afb0f4db4580e425f (patch)
tree094c1551ae4fe75fc49063c9787008863aad4eef /package.lisp
parent0793b603b564c1f188db999704358f82f6e2d25b (diff)
Added some more constructors, combinators, and consumers
Diffstat (limited to 'package.lisp')
-rw-r--r--package.lisp21
1 files changed, 20 insertions, 1 deletions
diff --git a/package.lisp b/package.lisp
index c07459e..a7ff741 100644
--- a/package.lisp
+++ b/package.lisp
@@ -1,4 +1,23 @@
;;;; package.lisp
(defpackage #:gtwiwtg
- (:use #:cl))
+ (:use #:cl)
+ (:export #:range
+ #:times
+ #:seq
+ #:repeater
+ #:yield-to!
+ #:map!
+ #:filter!
+ #:bind!
+ #:concat!
+ #:zip!
+ #:iter
+ #:fold
+ #:collect
+ #:size
+ #:maximum
+ #:minimum
+ #:average
+ #:argmax
+ #:argmin))