| 134 | |
| 135 | template <class ElementType> |
| 136 | FormattedJson::ElementLocation indexOf(FormattedJson::ElementList const& elements, FormattedJson::ElementLocation pos) { |
| 137 | for (; pos < elements.size(); ++pos) { |
| 138 | if (elements[pos].is<ElementType>()) |
| 139 | return pos; |
| 140 | } |
| 141 | return NPos; |
| 142 | } |
| 143 | |
| 144 | template <class ElementType> |
| 145 | FormattedJson::ElementLocation lastIndexOf( |