Ref1 method

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

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

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

Implementation

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