Check if the character at the specified position is blank (space or tab).
(b []byte, i int)
| 116 | |
| 117 | // Check if the character at the specified position is blank (space or tab). |
| 118 | func is_blank(b []byte, i int) bool { |
| 119 | //return is_space(b, i) || is_tab(b, i) |
| 120 | return b[i] == ' ' || b[i] == '\t' |
| 121 | } |
| 122 | |
| 123 | // Check if the character at the specified position is a line break. |
| 124 | func is_break(b []byte, i int) bool { |
no outgoing calls
no test coverage detected