MirStringTable.get

struct MirStringTable(size_t length, size_t maxKeyLength, bool caseInsensetive = false, C = char)
const @trusted pure nothrow @nogc
bool
get
()
(
scope const(C)[] key
,
ref uint index
)
if (
is(C == char) ||
is(C == wchar)
||
is(C == dchar)
)

Parameters

key const(C)[]

string to find index for

index uint

(ref) index to fill with key's position.

Return Value

Type: bool

true if keys index has been found

Meta