You can search for identifiers within the package.
in-package search v0.2.0
bindings
guile.guile
Guile.Symbol
val symbol_p : scm -> scm
symbol_p v returns #t if v is a symbol and #f otherwise.
symbol_p v
v
val is_symbol : scm -> bool
is_symbol v returns true if v is a symbol and false otherwise.
is_symbol v
val to_raw : string -> scm
to_raw s converts a string s into a Guile symbol.
to_raw s
s
val from_raw : scm -> string
from_raw s converts a Guile symbol s to an OCaml string.
from_raw s
val gensym : string -> scm
gensym s constructs a fresh symbol based on string s.
gensym s