You can search for identifiers within the package.
in-package search v0.2.0
bindings
guile.guile
Guile.Bool
val t : scm
t is the Guile value encoding true.
t
val f : scm
t is the Guile value encoding false.
val boolean_p : scm -> scm
boolean_p b returns #t if b is a boolean and #f otherwise.
boolean_p b
b
val is_bool : scm -> bool
is_bool b returns true if b is a boolean and false otherwise.
is_bool b
val not : scm -> scm
not b negates the boolean b.
not b
val to_raw : bool -> scm
to_raw b converts the OCaml boolean b to a Guile boolean.
to_raw b
val from_raw : scm -> bool
from_raw b converts the Guile boolean b to an OCaml boolean.
from_raw b