Array.back

  1. bool back [@property getter]
  2. bool back [@property setter]
    struct Array(T)
    @property
    void
    back
    (
    bool value
    )
    if (
    is(immutable T == immutable bool)
    )

Return Value

Type: void

The last element of the array.

Precondition: empty == false

Complexity: O(1)

Throws

Exception if the array is empty.

Meta