Ref4 method

Pointer<Char> Ref4([
  1. String? 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<Char> Ref4([String? o]) => ValueAt('4', o);