Find a map element given its name in a sorted array of map elements. This will return the index for the closest inferior or equal item in the given array.
(MapElement<T>[] map, CharChunk name)
| 1202 | * inferior or equal item in the given array. |
| 1203 | */ |
| 1204 | private static <T> int findIgnoreCase(MapElement<T>[] map, CharChunk name) { |
| 1205 | return findIgnoreCase(map, name, name.getStart(), name.getEnd()); |
| 1206 | } |
| 1207 | |
| 1208 | |
| 1209 | /** |
no test coverage detected