Is c an ASCII digit?
(c byte)
| 2636 | |
| 2637 | // Is c an ASCII digit? |
| 2638 | func isASCIIDigit(c byte) bool { |
| 2639 | return '0' <= c && c <= '9' |
| 2640 | } |
| 2641 | |
| 2642 | // CamelCase returns the CamelCased name. |
| 2643 | // If there is an interior underscore followed by a lower case letter, |