LazedAssocArray.insert

This function works like: // laa is an instance of LazedAssocArray laa["key"] = new T; with following way: laa.insert!("key", "new T");

This function uses string-mixin for handling "new T", becase D can't allow make an alias of the expr liek new T

class LazedAssocArray(T)
void
insert
(
string key
string value
bool always = false
)
(
)

Meta