MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / trim_right_if

Function trim_right_if

extern/boost/boost/algorithm/string/trim.hpp:234–243  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

232 */
233 template<typename SequenceT, typename PredicateT>
234 inline void trim_right_if(SequenceT& Input, PredicateT IsSpace)
235 {
236 Input.erase(
237 ::boost::algorithm::detail::trim_end(
238 ::boost::begin(Input),
239 ::boost::end(Input),
240 IsSpace ),
241 ::boost::end(Input)
242 );
243 }
244
245
246 //! Right trim

Callers 2

trim_rightFunction · 0.85
trim_ifFunction · 0.85

Calls 4

trim_endFunction · 0.85
beginClass · 0.50
endClass · 0.50
eraseMethod · 0.45

Tested by

no test coverage detected