Documented bools
This commit is contained in:
parent
7624090e5a
commit
1b4ea69548
|
@ -1,6 +1,10 @@
|
|||
#lang racket/base
|
||||
|
||||
(require scribble/base scribble/manual)
|
||||
(require
|
||||
scribble/base
|
||||
scribble/manual
|
||||
racket/sandbox
|
||||
scribble/eval)
|
||||
(provide (all-defined-out))
|
||||
|
||||
(define (todo . ls)
|
||||
|
@ -8,3 +12,12 @@
|
|||
|
||||
(define (gtech . x)
|
||||
(apply tech x #:doc '(lib "scribblings/guide/guide.scrbl")))
|
||||
|
||||
(define (curnel-sandbox init-string)
|
||||
(parameterize ([sandbox-output 'string]
|
||||
[sandbox-error-output 'string]
|
||||
;; TODO: Probs a bad idea
|
||||
[sandbox-eval-limits #f]
|
||||
[sandbox-memory-limit #f])
|
||||
(make-module-evaluator
|
||||
(format "#lang cur~n~a" init-string))))
|
||||
|
|
52
scribblings/stdlib/bool.scrbl
Normal file
52
scribblings/stdlib/bool.scrbl
Normal file
|
@ -0,0 +1,52 @@
|
|||
#lang scribble/manual
|
||||
|
||||
@(require "../defs.rkt")
|
||||
|
||||
@(define curnel-eval "(require cur/stdlib/bool cur/stdlib/sugar)")
|
||||
|
||||
@title{Bool}
|
||||
@defmodule[cur/stdlib/bool]
|
||||
This library defines the datatype @racket[Bool] and several functions and forms for using them.
|
||||
|
||||
@; TODO: Define a @defdata macro for Cur
|
||||
@deftogether[(@defthing[Bool Type]
|
||||
@defthing[true Bool]
|
||||
@defthing[false Bool])]{
|
||||
The boolean datatype.
|
||||
}
|
||||
|
||||
@defform[(if test-expr c-expr alt-expr)]{
|
||||
A syntactic form that expands to the inductive eliminator for @racket[Bool]. This form is currently non-dependent---the branches do not know that @racket[test-expr] is equal to @racket[true] or @racket[false].
|
||||
|
||||
@examples[#:eval curnel-eval
|
||||
(if true false true)
|
||||
(elim Bool Type (λ (x : Bool) Bool) false true true)]
|
||||
}
|
||||
|
||||
@defproc[(not [x Bool])
|
||||
Bool]{
|
||||
Negates the boolean @racket[x].
|
||||
|
||||
@examples[#:eval curnel-eval
|
||||
(not true)
|
||||
(not false)]
|
||||
}
|
||||
|
||||
@defproc[(and [x Bool] [y Bool])
|
||||
Bool]{
|
||||
The boolean @racket[and]. True if and only if @racket[x] and @racket[y] are both either @racket[true] or @racket[false].
|
||||
|
||||
@examples[#:eval curnel-eval
|
||||
(and true true)
|
||||
(and false true)]
|
||||
}
|
||||
|
||||
@defproc[(or [x Bool] [y Bool])
|
||||
Bool]{
|
||||
The boolean @racket[or]. True if and only if either @racket[x] or @racket[y] is @racket[true].
|
||||
|
||||
@examples[#:eval curnel-eval
|
||||
(or true true)
|
||||
(or false true)
|
||||
(or false false)]
|
||||
}
|
Loading…
Reference in New Issue
Block a user