* Scans the given number of hexadecimal digits in the text, * returning -1 if the given number is unavailable.
(count, canHaveSeparators)
| 11001 | * returning -1 if the given number is unavailable. |
| 11002 | */ |
| 11003 | function scanExactNumberOfHexDigits(count, canHaveSeparators) { |
| 11004 | var valueString = scanHexDigits(/*minCount*/ count, /*scanAsManyAsPossible*/ false, canHaveSeparators); |
| 11005 | return valueString ? parseInt(valueString, 16) : -1; |
| 11006 | } |
| 11007 | /** |
| 11008 | * Scans as many hexadecimal digits as are available in the text, |
| 11009 | * returning "" if the given number of digits was unavailable. |
no test coverage detected
searching dependent graphs…