| 274 | } |
| 275 | |
| 276 | iterator find(const T &value) FL_NOEXCEPT { |
| 277 | for (iterator it = begin(); it != end(); ++it) { |
| 278 | if (*it == value) { |
| 279 | return it; |
| 280 | } |
| 281 | } |
| 282 | return end(); |
| 283 | } |
| 284 | |
| 285 | template <typename Predicate> iterator find_if(Predicate pred) FL_NOEXCEPT { |
| 286 | for (iterator it = begin(); it != end(); ++it) { |