We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
public protocol KeyValueStore: Store
Store
func get(key: Data) -> Data?
func has(key: Data) -> Bool
func set(key: Data, value: Data)
func delete(key: Data)
func iterator(start: Data, end: Data) -> Iterator
func reverseIterator(start: Data, end: Data) -> Iterator