DList.this

Undocumented in source.
  1. this(A allocator)
  2. this(U[] values)
  3. this(A allocator, U[] values)
  4. this(Stuff stuff)
  5. this(A allocator, Stuff stuff)
    struct DList(T)
    this
    (
    A
    Stuff
    this Q
    )
    (,
    Stuff stuff
    )
    if (
    (
    (
    (
    is(Q == immutable) ||
    is(Q == const)
    )
    &&
    is(A == RCISharedAllocator)
    )
    ||
    (
    !(
    is(Q == immutable) ||
    is(Q == const)
    )
    &&
    is(A == RCIAllocator)
    )
    )
    &&
    isInputRange!Stuff
    &&
    isImplicitlyConvertible!(ElementType!Stuff, T)
    &&
    !is(Stuff == T[])
    )

Meta