Skip to content

Latest commit

 

History

History
5 lines (3 loc) · 314 Bytes

10.26.md

File metadata and controls

5 lines (3 loc) · 314 Bytes

back_inserter always inserts element at the end of the container by calling c.push_back().

front_inserter always inserts element at the beginning of the container by calling c.push_front().

inserter always insert element at the front of the same given element in the container by calling c.insert().