Uniq.this

Constructor taking lvalue. Uniqueness is achieve only if there is no other copies of the passed reference.

  1. this(T obj)
  2. this(T obj)
    struct Uniq(T)
    this
    (
    ref T obj
    )
    if (
    is(T : Disposable) &&
    !hasMemberFunc!(T, "release")
    )
  3. this(Uniq!U u)

Meta