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

Function trim_left_if

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

Source from the content-addressed store, hash-verified

122 */
123 template<typename SequenceT, typename PredicateT>
124 inline void trim_left_if(SequenceT& Input, PredicateT IsSpace)
125 {
126 Input.erase(
127 ::boost::begin(Input),
128 ::boost::algorithm::detail::trim_begin(
129 ::boost::begin(Input),
130 ::boost::end(Input),
131 IsSpace));
132 }
133
134 //! Left trim
135 /*!

Callers 2

trim_leftFunction · 0.85
trim_ifFunction · 0.85

Calls 4

trim_beginFunction · 0.85
beginClass · 0.50
endClass · 0.50
eraseMethod · 0.45

Tested by

no test coverage detected