doc: Add module-level comments for functions.
This commit is contained in:
parent
d014209a98
commit
96f8782d7b
1 changed files with 15 additions and 8 deletions
|
@ -1,12 +1,19 @@
|
||||||
#lang scribble/manual
|
#lang scribble/manual
|
||||||
@(require (for-label racket graph))
|
@(require (for-label racket "../functions.rkt"))
|
||||||
|
|
||||||
@title[#:tag "functions"]{dds/functions: Formal Functions}
|
@title[#:tag "functions"]{dds/functions: Formal Functions}
|
||||||
|
|
||||||
@racketblock[
|
@defmodule[dds/functions]
|
||||||
(define (nobody-understands-me what)
|
|
||||||
(list "When I think of all the"
|
This modules provides some definitions for working with functions: tabulating,
|
||||||
what
|
(re)constructing from tables, generating random functions, etc.
|
||||||
"I've tried so hard to explain!"))
|
Some definitions of particular kinds of functions are also provided (threshold
|
||||||
(nobody-understands-me "glorble snop")
|
Boolean functions, etc.).
|
||||||
]
|
|
||||||
|
@section{Tabulating functions}
|
||||||
|
|
||||||
|
@section{Constructing functions}
|
||||||
|
|
||||||
|
@section{Random functions}
|
||||||
|
|
||||||
|
@section{Threshold Boolean functions}
|
||||||
|
|
Loading…
Reference in a new issue