Unique.construct

Factory method so can construct with zero args.

  1. typeof(this) construct(Args args)
    struct Unique(UniqueType, Allocator = typeof(theAllocator()), Flag!"supportGC" supportGC = gcExists ? Flag!"supportGC".yes : Flag!"supportGC".no)
    static
    static if(isGlobal)
    typeof(this)
    construct
    (
    Args...
    )
    (
    auto ref Args args
    )
    if (
    isAllocator!Allocator
    )
  2. typeof(this) construct(Allocator allocator, Args args)

Meta