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

  1. void insert()
    class LazedAssocArray(T)
    void
    insert
    (
    string key
    string value
    )
    ()
  2. void insert()
  3. void insert()
  4. void insert(string key, T delegate() value)
  5. void insert(string key, T function() value)

Meta