Next: scheme lex datum abbreviations, Previous: scheme lex datum vectors, Up: scheme lex datum [Index]
Bytevector data, representing bytevectors (stdlib bytevector), are
represented using the notation #vu8(<u8> ...)
, where the
?u8s represent the octets of the bytevector. For example, a
bytevector of length 3 containing the octets 2, 24, and 123 can be
represented as follows:
#vu8(2 24 123)
This is the external representation of a bytevector, and also an expression that evaluates to a bytevector.