Check if the character at the specified position is tab.
(b []byte, i int)
| 111 | |
| 112 | // Check if the character at the specified position is tab. |
| 113 | func is_tab(b []byte, i int) bool { |
| 114 | return b[i] == '\t' |
| 115 | } |
| 116 | |
| 117 | // Check if the character at the specified position is blank (space or tab). |
| 118 | func is_blank(b []byte, i int) bool { |
no outgoing calls
no test coverage detected