indexed-relation ~master (2018-02-23T20:46:37Z)
Dub
Repo
UniqueHashTableIndex
indexedRelation
An index based on a hash table. Prohibits multiple records with the same key.
class
UniqueHashTableIndex (
Record
string
KeyString
) {
alias
Key
=
typeof
(
KeyFunction
(
Record
.
init
))
;
void
insert
(Record record);
Nullable
!
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
Nullable
!
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. Prohibits multiple records with the same key.