You can search for identifiers within the package.
in-package search v0.2.0
bindings
guile.guile
Guile.List
val is_null : scm -> bool
is_null ls returns true if ls is an empty list.
is_null ls
ls
val of_raw : (scm -> 'a) -> scm -> 'a list
of_raw f ls extracts a list from a Guile list ls using f to extract individual elements.
of_raw f ls
f
val to_raw : ('a -> scm) -> 'a list -> scm
to_raw f ls converts an OCaml list ls to a Guile list using f to encode individual elements.
to_raw f ls