FixedSizeArray.front

Undocumented in source. Be warned that the author may not have intended to support it.
  1. T front [@property getter]
  2. const(T) front [@property getter]
    struct FixedSizeArray(T, size_t Size = 32)
    pragma(inline, true) @property ref const @trusted
    const(T)
    front
    ()

Examples

FixedSizeArray!(int,32) fsa;
fsa.insertBack(1337);
fsa.insertBack(1338);
assert(fsa.length == 2);

assert(fsa.front == 1337);
assert(fsa.back == 1338);

Meta