is_white(c)
is a public pure function in the stdlib_ascii
module. This module provides methods to manipulate and handle intrinsic character variables and constants.
The is_white
function checks whether its argument is a whitespace character or not.
Whitespace characters include space, tab, vertical tab, form feed, carriage return, and linefeed characters.
public pure function is_white(c)
c
is the character to test.The function returns a logical value. It returns true
if the character is a whitespace character and false
otherwise.