Fundamentals of CS I (CS151 2001S) : Reference
[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
| Procedure | char-upcase |
|---|---|
| Parameters | c, a character |
| Purpose | If c is lowercase, returns the uppercase version of c. Otherwise, returns c. |
| Produces | A character. |
| Preconditions | Only one parameter (verified). c is a character (verified). |
| Postconditions | The result is a character. The result is not a lowercase letter. Does not affect c. |
| Examples | > (char-upcase #\a) #\A > (char-upcase #\A) #\A > (char-upcase #\3) #\3 > (char-upcase #\space) #\space > (char-upcase #\a #\b) char-upcase: expects 1 argument, given 2: #\a #\b > (char-upcase 3) char-upcase: expects argument of type <character>; given 3 > (define ch #\a) > ch #\a > (char-upcase ch) #\A > ch #\a |
| See Also |
|
"..." (double quote) |
+ (plus) |
#\character (pound backslash) |
#\newline |
#\space |
; (semicolon)
* (times) |
abs |
and |
append |
boolean? |
car |
cdr |
char? |
char<? |
char<=? |
char=? |
char>=? |
char>? |
char-alphabetic? |
char-ci<? |
char-ci<=? |
char-ci=? |
char-ci>? |
char-ci>=? |
char->integer |
char-downcase |
char-lower-case? |
char-numeric? |
char-upper-case? |
char-upcase |
char-whitespace? |
complex? |
cons |
eq? |
equal? |
eqv? |
exact? |
exact->inexact |
exp |
expt |
inexact? |
integer? |
integer->char
length |
list |
list? |
list-ref |
null |
null? |
number? |
procedure?
rational? |
real? |
reverse
sqrt |
string? |
symbol?
[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 Thu Feb 22 05:47:50 2001.
This page may be found at http://www.cs.grinnell.edu/~rebelsky/Courses/CS151/2001S/char-upcase.html.
You may validate
this page's HTML.
The source was last modified Sun Feb 4 20:57:06 2001.