package guile

  1. Overview
  2. Docs
Bindings to GNU Guile Scheme for OCaml

Install

Dune Dependency

Authors

Maintainers

Sources

1.0.tar.gz
md5=be5a3dae4018b36103f0af9f769a26f0
sha512=74136c9f933aea8d0403d5f5826cf7acb8824c985639d5a79eb2a7247c1bd1362eb61fd946f148e25e7b0283af2e36435c3d3ffe5f7e7913e27b70d941e97c09

doc/guile.guile/Guile/Char/index.html

Module Guile.CharSource

Sourceval char_p : scm -> scm

char_p v returns #t if v is a char and #f otherwise.

Sourceval is_char : scm -> bool

is_char v returns true if v is a char and false otherwise.

Sourceval alphabetic_p : scm -> scm

alphabetic_p v returns #t if v is a char and #f otherwise.

Sourceval is_alphabetic : scm -> bool

is_alphabetic v returns true if v is a char and false otherwise.

Sourceval numeric_p : scm -> scm

numeric_p v returns #t if v is a number and #f otherwise.

Sourceval is_numeric : scm -> bool

is_numeric v returns true if v is a number and false otherwise.

Sourceval whitespace_p : scm -> scm

whitespace_p v returns #t if v is whitespace and #f otherwise.

Sourceval is_whitespace : scm -> bool

is_whitespace v returns true if v is whitespace and false otherwise.

Sourceval upper_case_p : scm -> scm

upper_case_p v returns #t if v is upper case and #f otherwise.

Sourceval is_upper_case : scm -> bool

is_upper_case v returns true if v is upper case and false otherwise.

Sourceval lower_case_p : scm -> scm

lower_case_p v returns #t if v is lower case and #f otherwise.

Sourceval is_lower_case : scm -> bool

is_lower_case v returns true if v is lower case and false otherwise.

Sourceval is_both_p : scm -> scm

is_both_p v returns #t if v is either lower or upper case and #f otherwise.

Sourceval is_both : scm -> bool

is_both v returns true if v is either lower or upper case and false otherwise.

Sourceval general_category_p : scm -> scm

general_category_p v returns #t if v is a general category unicode char and #f otherwise.

Sourceval is_general_category : scm -> bool

is_general_category v returns true if v is a general category unicode char and false otherwise.

Sourceval from_raw : scm -> char

from_raw c converts a Guile scheme char c to an OCaml char.

Sourceval to_raw : char -> scm

to_raw c converts an OCaml char c to an Guile char.

OCaml

Innovation. Community. Security.