values -- r7rs Definition constructor;
Procedure variants:
(() -> ())
((any) -> (any))
((any |2...|) -> (any |2...|))
scheme:base -- (scheme base);scheme -- (scheme);(values obj ...)Delivers all of its arguments to its continuation. The
valuesprocedure might be defined as follows:(define (values . things) (call-with-current-continuation (lambda (cont) (apply cont things))))
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.
any;