You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
216 B
8 lines
216 B
package needle
|
|
|
|
type NeedleValueMap interface {
|
|
Set(key Key, offset, size uint32) (oldOffset, oldSize uint32)
|
|
Delete(key Key) uint32
|
|
Get(key Key) (*NeedleValue, bool)
|
|
Visit(visit func(NeedleValue) error) error
|
|
}
|