StackImpl.opOpAssign

Pushes an element onto the stack.

  1. void opOpAssign(T value)
    struct StackImpl(T, bool ownsMemory = true)
    @nogc @trusted
    void
    opOpAssign
    (
    string op = "~"
    )
    (
    auto ref T value
    )
  2. void opOpAssign(T[] other)

Parameters

value T

The value to push.

Meta