util: Add Erase and EraseIf helpers

No std::erase_if in C++17 which is handy to have!
pull/70/head
Joshua Ashton 7 months ago committed by Joshie
parent 9a44e687c6
commit cb10f30fd8

@ -362,3 +362,16 @@ inline uint32 tzcnt( uint32 n )
#endif
}
template< typename T, typename Value >
constexpr void Erase( T &c, const Value &value )
{
auto it = std::remove( c.begin(), c.end(), value );
c.erase( it, c.end() );
}
template< typename T, typename Pred >
constexpr void EraseIf( T &c, Pred pred )
{
auto it = std::remove_if( c.begin(), c.end(), pred );
c.erase( it, c.end() );
}

Loading…
Cancel
Save