-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.lisp
More file actions
42 lines (35 loc) · 1.49 KB
/
package.lisp
File metadata and controls
42 lines (35 loc) · 1.49 KB
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
;;; Copyright (c) 2022 Max-Gerd Retzlaff <mgr@matroid.org>, Datagraph GmbH.
;;; Distributed under the terms of the GNU General Public License, Version 2.0,
;;; see file LICENSE in the top level directory of this repository.
(in-package :cl-user)
(defpackage :ndb.quads
(:use :cl)
(:export :quad :triple :tuple :single :quad-vis
:+quad-size+ :+tuple-size+ :+tuple-size+ :+single-size+
:+quad-count+ :+triple-count+ :+tuple-count+ :+single-count+
:with-foreign-quad :convert-foreign-quad
:list-to-quad :list-to-quad*
:quad-to-list :quad-to-list*)
(:documentation "Definitions to access quads in tables"))
(defpackage :ndb.simple-scan
(:use :cl)
(:export :simple-scan)
(:documentation "Simple example using scan"))
(defpackage :ndb.scan-count
(:use :cl)
(:export :scan-count :scan-count/recattr)
(:documentation "Simple example using scan"))
(defpackage :ndb.list-indexes
(:use :cl)
(:export :list-indexes)
(:documentation "Simple example to list indexes and extract information on them"))
(defpackage :ndb.decode-columns
(:use :cl)
(:export :get-column-info :get-attribute-info :get-column-and-attribute-info)
(:documentation "decode column and attribute information about a table's record"))
(defpackage :ndb.interpreted-scan
(:use :cl)
(:export :interpreted-scan :interpreted-scan/compiled-ic
:revisioned-scan :revisioned-scan-test
:spocq-revisioned-scan)
(:documentation "Interpreted example using scan"))