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

10 uses

	go.etcd.io/bbolt (current package)
		bucket.go#L105: 	k, v, flags := c.seek(name)
		bucket.go#L167: 	k, _, flags := c.seek(key)
		bucket.go#L221: 	k, _, flags := c.seek(key)
		bucket.go#L233: 		if _, _, childFlags := child.Cursor().seek(k); (childFlags & bucketLeafFlag) != 0 {
		bucket.go#L262: 	k, v, flags := b.Cursor().seek(key)
		bucket.go#L295: 	k, _, flags := c.seek(key)
		bucket.go#L321: 	k, _, flags := c.seek(key)
		bucket.go#L554: 		k, _, flags := c.seek([]byte(name))
		cursor.go#L118: 	k, v, flags := c.seek(seek)
		cursor.go#L154: func (c *Cursor) seek(seek []byte) (key []byte, value []byte, flags uint32) {