aboutsummaryrefslogtreecommitdiff
path: root/cursor.go
diff options
context:
space:
mode:
Diffstat (limited to 'cursor.go')
-rw-r--r--cursor.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/cursor.go b/cursor.go
index 13a56cf..d61ce80 100644
--- a/cursor.go
+++ b/cursor.go
@@ -10,17 +10,6 @@ const (
c_untrack = 0x40 /**< Un-track cursor when closing */
)
-/*
-type Cursor interface {
- First() error
- Last() error
- Next() ([]byte, []byte, error)
- Prev() ([]byte, []byte, error)
- Current() ([]byte, []byte, error)
- Get([]byte) ([]byte, error)
-}
-*/
-
type Cursor struct {
flags int
next *Cursor