MCPcopy
hub / github.com/go-yaml/yaml / is_tab

Function is_tab

yamlprivateh.go:113–115  ·  view source on GitHub ↗

Check if the character at the specified position is tab.

(b []byte, i int)

Source from the content-addressed store, hash-verified

111
112// Check if the character at the specified position is tab.
113func 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).
118func is_blank(b []byte, i int) bool {

Calls

no outgoing calls

Tested by

no test coverage detected