Ref3 method

Pointer<Char> Ref3([
  1. String? o
])

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

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

Implementation

Pointer<Char> Ref3([String? o]) => ValueAt('3', o);