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)
| 1149 | * inferior or equal item in the given array. |
| 1150 | */ |
| 1151 | private static <T> int find(MapElement<T>[] map, CharChunk name) { |
| 1152 | return find(map, name, name.getStart(), name.getEnd()); |
| 1153 | } |
| 1154 | |
| 1155 | |
| 1156 | /** |
no test coverage detected