MCPcopy Create free account
hub / github.com/expr-lang/expr / lower

Function lower

parser/lexer/lexer.go:190–190  ·  view source on GitHub ↗
(ch rune)

Source from the content-addressed store, hash-verified

188}
189
190func lower(ch rune) rune { return ('a' - 'A') | ch } // returns lower-case ch iff ch is ASCII letter
191
192func (l *Lexer) scanDigits(ch rune, base, n int) rune {
193 for n > 0 && digitVal(ch) < base {

Callers 1

digitValFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…