-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.lisp
More file actions
40 lines (38 loc) · 750 Bytes
/
package.lisp
File metadata and controls
40 lines (38 loc) · 750 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
(defpackage :cqlcl
(:use #:cl #:uuid #:split-sequence :lparallel :bordeaux-threads)
(:export
;; API
#:make-connection
#:query
#:prepare
#:execute
#:options
#:msg
;; Exported for tests
#:ip=
#:+consistency-digit-to-name+
#:+consistency-name-to-digit+
#:conn-options
#:encode-value
#:make-ipv4
#:make-ipv6
#:make-bigint
#:make-varint
#:make-stream-from-byte-vector
#:next-stream-id
#:return-stream-id
#:parse-boolean
#:parse-bytes
#:parse-consistency
#:parse-int
#:parse-ip
#:parse-short
#:parse-short-bytes
#:parse-string
#:parse-string-map
#:parse-uuid
#:read-single-packet
#:used-streams
#:with-next-stream-id
#:write-int
#:write-short))