VEBroot.insert

insert method. this method is called from class with a universe size given. It performs recursion calls untill the universe size is reduced to the base size. Then the overloaded insert method is called.

struct VEBroot(T = void)
bool
insert
(
T...
)
(
size_t key
,
ref T value
)
if (
(
is(T == void) &&
T.length == 0
)
||
(
!is(T == void) &&
T.length < 2
)
)

Meta