https://github.com/JacquesCarette/hol-light
Raw File
Tip revision: aad5d2584b75b965328d37ea5a5baa3c100f8cff authored by Jacques Carette on 22 June 2020, 23:39:45 UTC
Revert "fourth batch (#17)"
Tip revision: aad5d25
isspace.doc
\DOC isspace

\TYPE {isspace : string -> bool}

\SYNOPSIS
Tests if a one-character string is some kind of space.

\DESCRIBE
The call {isspace s} tests whether the first character of string {s} (normally 
it is the only character) is a `space' of some kind, including tab and newline.

\FAILURE
Fails if the string is empty.

\SEEALSO
isalnum, isalpha, isbra, isnum, issep, issymb.

\ENDDOC
back to top