Skip to content
  • Mark OLESEN's avatar
    ENH: add front(), back() methods to List containers · c7e6ae30
    Mark OLESEN authored and Andrew Heather's avatar Andrew Heather committed
    - traditionally used first(), last() methods,
      but front(), back() are well-known from std::vector etc
      which makes the access more familiar.
    
    - support push_back() method for containers that already had append().
      This increases name familiar and can help when porting between
      different C++ code bases.
    
    - support pop_back() method for List containers.
      This is similar to std::vector
    c7e6ae30