The OpenD Programming Language

MirStringTable.get

struct MirStringTable(U, C = char)
const @trusted pure nothrow @nogc
bool
get
()
(
scope const C[] key
,
ref uint index
)
if (
__traits(isUnsigned, U) &&
(
is(C == char) ||
is(C == wchar)
||
is(C == dchar)
)
)

Parameters

key 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