Returns the string length. @param info input info (can be null) @return result of check @throws QueryException query exception
(final InputInfo info)
| 70 | * @throws QueryException query exception |
| 71 | */ |
| 72 | public final int length(final InputInfo info) throws QueryException { |
| 73 | return ascii(info) ? string(info).length : offsets.length; |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * Returns the single characters of the string. |
no test coverage detected