Ref2 method

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

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

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

Implementation

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