Test if a character is a whitespace character.
(c byte)
| 813 | |
| 814 | // Test if a character is a whitespace character. |
| 815 | func isspace(c byte) bool { |
| 816 | return ishorizontalspace(c) || isverticalspace(c) |
| 817 | } |
| 818 | |
| 819 | // Test if a character is a horizontal whitespace character. |
| 820 | func ishorizontalspace(c byte) bool { |
no test coverage detected
searching dependent graphs…