bytevector-u8-set! -- r7rs Definition
§

Kind
§

mutator!;

Extended by
§

Procedure signature
§

Procedure variants:

Exports
§

Exports recursive
§

Description
§

(bytevector-u8-set! bytevector k byte)

Domain: It is an error if k is not a valid index of bytevector.

Stores byte as the kth byte of bytevector.

(let ((bv (bytevector 1 2 3 4)))
  (bytevector-u8-set! bv 1 3)
  bv) ===> #u8(1 3 3 4)

The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.

Referenced-types
§