Fundamentals of CS I (CS151 2001S) : Outlines
[Current]
[Discussions]
[Glance]
[Honesty]
[Instructions]
[Links]
[News]
[Search]
[Syllabus]
Primary
[Examples]
[Exams]
[Handouts]
[Homework]
[Labs]
[Outlines]
[Quizzes]
[Readings]
[Reference]
Sets
[Blackboard]
[Scheme Report]
[SamR's Schedule]
[Rebelsky/Fall 2000]
[Walker/Fall2000]
[Stone/Spring2000]
Links
Reading: Procedures that Return Multiple Values. Lab: Procedures that Return Multiple Values. Back to Variable-Arity Procedures. On to Laboratory: Multiple-Valued Procedures.
Held Friday, April 13, 2001
Summary
Today we consider why and how to return more than one value from a procedure.
Notes
partition in
the reading.
map! probably shouldn't return anything, but it's
fine if it returns the modified vector.
Overview
values to return more than one
value from a procedure.
call-with-values procedure takes two parameters,
a zero-parameter procedure, genproc, that returns multiple values
and a procedure, proc, of the same number of parameters. It
evaluates genproc and applies proc to the result.
> (values 1 2) 1 2 > (call-with-values (lambda () (values 1 2)) +) 3 > (call-with-values (lambda () (values 1 2 3 4)) (lambda lst (cadr lst))) 2
Back to Variable-Arity Procedures. On to Laboratory: Multiple-Valued Procedures.
[Current]
[Discussions]
[Glance]
[Honesty]
[Instructions]
[Links]
[News]
[Search]
[Syllabus]
Primary
[Examples]
[Exams]
[Handouts]
[Homework]
[Labs]
[Outlines]
[Quizzes]
[Readings]
[Reference]
Sets
[Blackboard]
[Scheme Report]
[SamR's Schedule]
[Rebelsky/Fall 2000]
[Walker/Fall2000]
[Stone/Spring2000]
Links
Disclaimer: I usually create these pages on the fly. This means that they are rarely proofread and may contain bad grammar and incorrect details. It also means that I may update them regularly (see the history for more details). Feel free to contact me with any suggestions for changes.
This page was generated by Siteweaver on Wed May 5 12:15:08 2004.
This page may be found at http://www.cs.grinnell.edu/~rebelsky/Courses/CS151/2001S/outline.40.html.
You may validate
this page's HTML.
The source was last modified Tue Jan 23 16:01:58 2001.