Ref1 method

P Ref1([
  1. String? o,
  2. int? bufferSize
])

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

P Ref1([String? o, int? bufferSize]) => ValueAt('1', o, bufferSize);