| 202 | |
| 203 | template <typename Iterator, typename T> |
| 204 | void fill(Iterator first, Iterator last, const T& value) FL_NOEXCEPT { |
| 205 | while (first != last) { |
| 206 | *first = value; |
| 207 | ++first; |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | template <typename Iterator, typename T> |
| 212 | Iterator find(Iterator first, Iterator last, const T& value) FL_NOEXCEPT { |
no outgoing calls
no test coverage detected