https://github.com/JacquesCarette/hol-light
Raw File
Tip revision: b27a524086caf73530b7c2c5da1b237d3539f143 authored by Jacques Carette on 24 August 2020, 14:18:07 UTC
Merge pull request #35 from sjjs7/final-changes
Tip revision: b27a524
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