-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.lisp
51 lines (49 loc) · 905 Bytes
/
package.lisp
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
45
46
47
48
49
50
51
(in-package :cl-user)
(defpackage :cl-roaring
(:use :cl :cffi)
(:shadow #:remove #:subsetp #:intersection #:nintersection #:union #:nunion)
(:documentation "Interface to C-language Roaring Bitmap APIs.")
(:export
;; Conditions
#:bitmap-error
#:allocation-error
#:deallocated-bitmap-error
;; Functions
#:add
#:add-checked
#:add-many
#:and-cardinality
#:and-not
#:and-not-cardinality
#:and-not-in-place
#:cardinality
#:clear
#:containsp
#:copy
#:create
#:emptyp
#:equals
#:free
#:intersection
#:intersectp
#:jaccard-index
#:map-bitmap
#:maximum
#:minimum
#:nintersection
#:nunion
#:or-cardinality
#:overwrite
#:remove
#:remove-checked
#:remove-many
#:shrink-to-fit
#:strict-subsetp
#:subsetp
#:to-vector
#:union
#:with-bitmap
#:xor
#:xor-cardinality
#:xor-in-place
))