You can search for identifiers within the package.
in-package search v0.2.0
bindings
guile.guile
Guile.String
val string_p : scm -> scm
string_p v returns #t if v is a string and #f otherwise.
string_p v
v
val is_string : scm -> bool
is_string v returns true if v is a string and false otherwise.
is_string v
val is_empty : scm -> scm
is_empty v returns true if v is an empty string and false otherwise.
is_empty v
val string : char list -> scm
string cs constructs a fresh Guile string from the list of characters cs.
string cs
cs
val len : scm -> int
len s returns the length of the Guile string s.
len s
s
val to_raw : string -> scm
to_raw s encodes an OCaml string s as a Guile string.
to_raw s
val from_raw : scm -> string
from_raw s extracts an OCaml string from a Guile string s.
from_raw s