Returns the numeric value of the character ch in the specified radix.
(char ch, int radix)
| 237 | * Returns the numeric value of the character ch in the specified radix. |
| 238 | */ |
| 239 | public static int digit(char ch, int radix){ |
| 240 | return digit((int) ch, radix); |
| 241 | } |
| 242 | |
| 243 | /** |
| 244 | * Convenience method to determine the value of the character |
no outgoing calls
no test coverage detected