Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/endbasic/endbasic
/ is_word
Method
is_word
core/src/lexer.rs:229–234 ·
view source on GitHub ↗
(&self)
Source
from the content-addressed store, hash-verified
227
}
228
229
fn is_word(&self) -> bool {
230
match *self {
231
'_'
=> true,
232
ch => ch.is_alphanumeric(),
233
}
234
}
235
}
236
237
/// A token along with its position and length in the source.
Callers
3
consume_symbol
Method · 0.80
consume_label
Method · 0.80
read
Method · 0.80
Calls
no outgoing calls
Tested by
no test coverage detected