BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
detail Namespace Reference

Classes

class  CompareAndPrint

Functions

template<class ForwIter>
ForwIter remove_duplicates (ForwIter b, ForwIter e, bool quiet=DEFQUIET)

Function Documentation

◆ remove_duplicates()

template<class ForwIter>
ForwIter detail::remove_duplicates ( ForwIter b,
ForwIter e,
bool quiet = DEFQUIET )

Definition at line 57 of file Event/GeneratorObject/include/DataModel/DataVector.h.

57 {
58 std::sort( b, e );
59 return std::unique( b, e, CompareAndPrint( quiet ) );
60 }

Referenced by DataVector< T >::erase().