bytes->position

Reads or writes the current byte position.

Target member

Signature

1bytes->position

Reads or writes the current byte position.

bytes->position is called with member syntax on a receiver value. bytes->position works with binary values. Convert strings to bytes before byte-level hashing or encoding, then convert back to a string only for display or transport.

Examples

Basic call

1local(b) = bytes('abc')2#b->position = 2
The example keeps binary work on bytes and converts only when text output is needed.