go.etcd.io/bbolt.Cursor.Prev (method)

3 uses

	go.etcd.io/bbolt (current package)
		cursor.go#L85: func (c *Cursor) Prev() (key []byte, value []byte) {

	src.elv.sh/pkg/store
		cmd.go#L137: 			k, v = c.Prev() // upto exists, find the previous one
		cmd.go#L140: 		for ; k != nil; k, v = c.Prev() {