make_unique

Undocumented in source. Be warned that the author may not have intended to support it.
  1. unique_ptr!(T) make_unique(T value, void function(T*) df)
  2. unique_ptr!(T) make_unique(void function(T*) df, Args args)
    make_unique
    (
    T
    Args...
    )
    (
    void function
    (
    T*
    )
    df
    ,
    Args args
    )
  3. unique_ptr!(T) make_unique(Args args)
  4. unique_ptr!(T) make_unique(T* p, void function(T*) df)

Meta