MirStringTable.this

The keys should be first sorted by length and then lexicographically.

The constructor uses GC. It can be used in @nogc code when if constructed in compile time.

struct MirStringTable(size_t length, size_t maxKeyLength, bool caseInsensetive = false, C = char)
@trusted pure nothrow
this
(
immutable(C)[][length] sortedKeys
)
if (
is(C == char) ||
is(C == wchar)
||
is(C == dchar)
)

Meta