The OpenD Programming Language

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(U, C = char)
@trusted pure nothrow
this
()
(
const(immutable(C)[])[] sortedKeys
)
if (
__traits(isUnsigned, U) &&
(
is(C == char) ||
is(C == wchar)
||
is(C == dchar)
)
)

Meta