Ref5 method

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

Allocates o into slot '5', or returns nullptr if o is null.

Intended as a short-lived scratch reference within a single C call. Use RefUpdate5 if the callee may write back into the pointer.

Implementation

Pointer<T> Ref5([X? o]) => _Ref(o, '5');