erase
// In header: <boost/container/small_vector.hpp> template<typename T, std::size_t N, typename A, typename O, typename U> small_vector< T, N, A, O >::size_type erase(small_vector< T, N, A, O > & c, const U & v);
Effects: Erases all elements that compare equal to v from the container c.
Complexity: Linear.