UniqueTake.back

Range primitives

  1. auto ref back()
  2. auto back(ElementType!R v)
    struct UniqueTake(Range)
    @property
    back
    (
    ElementType!R v
    )
    if (
    isInputRange!(Unqual!Range) &&
    !(
    (
    !isInfinite!(Unqual!Range) &&
    hasSlicing!(Unqual!Range)
    )
    ||
    is(Range T == UniqueTake!T)
    )
    )
  3. alias opDollar = length
  4. void popBack()
  5. auto ref opIndex(size_t index)
  6. void opIndexAssign(ElementType!R v, size_t index)
  7. auto moveBack()
  8. auto moveAt(size_t index)

Meta