Generated: Monday, November 14, 2011, 09:23:57 | Copyright © 2011 , Kurt Nørmark | |
Nested Extractions
Kurt Normark Department of Computer Science, Aalborg University
LAML Source file: examples/schemedoc/point.scm
This is an example of extraction of nested documentation comments
|
point |
Form | (point x y) |
Description | The function point. This function acts as a class. |
See also | Scheme source file | point |
|
Accessors |
|
|
getx |
Form | (getx) |
Description | The method that accesses x |
See also | Scheme source file | getx |
|
gety |
Form | (gety) |
Description | The method that accesses y |
See also | Scheme source file | gety |
|
add |
Form | (add p) |
Description | Add p to this point |
See also | Scheme source file | add |
|
type-of |
Form | (type-of) |
Description | Return the type of this point |
See also | Scheme source file | type-of |
|
fac |
Form | (fac n) |
Description | The factorial functions. Also known as n! |
Precondition | n >= 0 |
Parameters | n | An integer |
Returns | n * (n-1) * ... * 1 |
See also | Scheme source file | fac |
|