Ref4 method

Pointer<T> Ref4([
  1. X? o
])

Writes o into slot '4' and returns its pointer.

Shorthand for Value(o, '4'). Use RefOrNull4 if o may be null and the callee expects nullptr in that case..

Implementation

Pointer<T> Ref4([X? o]) => Value(o, '4');