What does the "inout" after front() do here...


@property ref inout(T) front() inout
{
    assert(_data.refCountedStore.isInitialized);
    return _data._payload[0];
}

Cant seem to find an explanation in the docs or forums :(

Reply via email to