indexed-relation ~master (2018-02-23T20:46:37Z)
Dub
Repo
HashTableIndex
indexedRelation
An index based on a hash table. Allows multiple records with the same key.
class
HashTableIndex (
Record
string
KeyString
) {
alias
Key
=
typeof
(
KeyFunction
(
Record
.
init
))
;
void
insert
(Record record);
Record
[]
lookup
(Key key);
}
Members
Aliases
Key
alias
Key
=
typeof
(
KeyFunction
(
Record
.
init
))
Undocumented in source.
Functions
insert
void
insert
(Record record)
Undocumented in source. Be warned that the author may not have intended to support it.
lookup
Record
[]
lookup
(Key key)
Undocumented in source. Be warned that the author may not have intended to support it.
Meta
Source
See Implementation
indexedRelation
classes
HashTableIndex
IndexedRelation
UniqueHashTableIndex
An index based on a hash table. Allows multiple records with the same key.