dodb.cr/src/fsdb/indexer.cr

9 lines
241 B
Crystal

abstract class DODB::Indexer(V)
abstract def index (key : String, value : V)
abstract def deindex (key : String, value : V)
abstract def check! (key : String, value : V, old_value : V?)
abstract def name : String
end