-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.lisp
More file actions
44 lines (41 loc) · 998 Bytes
/
Copy pathpackage.lisp
File metadata and controls
44 lines (41 loc) · 998 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#|
Copyright 2020 Jesse Off <jesseoff@me.com>
Distributed under the MIT license (see LICENSE file)
|#
(defpackage #:ratmath
(:use #:cl)
(:export #:rat
#:infsup
#:with-interval-math
#:~
#:~=
#:hull
#:lower
#:upper
#:interval
#:parse-interval
#:fractions
#:rat-pipe
#:farey-pipe
#:napiers-constant-generator
#:pipe-first
#:pipe-cons
#:pipe-sink
#:pipe-sink-until
#:pipe-sink-until-condition
#:pipe-transform
#:pipe-append
#:pipe-end-before
#:pipe-end-after
#:pipe-last
#:pipe-head
#:pipe-uniq
#:pipe-mapc
#:pipe-filter
#:pipe-signaler
#:pipe-printer
#:pipe-apply
#:pipe-endp
#:pipe-rest
#:pipe-to-list
#:list-to-pipe))