Warning: This is the manual of the legacy Guile 2.0 series. You may want to read the manual of the current stable series instead.
Next: rnrs mutable-strings, Previous: rnrs eval, Up: R6RS Standard Libraries [Contents][Index]
The (rnrs mutable-pairs (6))
library provides the set-car!
and set-cdr!
procedures, which allow the car
and
cdr
fields of a pair to be modified.
These procedures are identical to the ones provide by Guile’s core
library. See Pairs, for documentation. All pairs in Guile are
mutable; consequently, these procedures will never throw the
&assertion
condition described in the R6RS libraries
specification.