| 137 | /// @endcode |
| 138 | template <typename Container> |
| 139 | back_insert_iterator<Container> back_inserter(Container& c) FL_NOEXCEPT { |
| 140 | return back_insert_iterator<Container>(c); |
| 141 | } |
| 142 | |
| 143 | /// Reverse iterator adapter - reverses the direction of a bidirectional iterator |
| 144 | /// |
no outgoing calls