bytes->size
Returns byte count.
Target
Signature
1bytes->size()Returns byte count.
bytes->size is called with member syntax on a receiver value. bytes->size 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
1bytes('abc')->sizeThe example keeps binary work on bytes and converts only when text output is needed.