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

Function trim_end

extern/boost/boost/algorithm/string/detail/trim.hpp:78–87  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

76 // Search for first non matching character from the end of the sequence
77 template< typename ForwardIteratorT, typename PredicateT >
78 inline ForwardIteratorT trim_end(
79 ForwardIteratorT InBegin,
80 ForwardIteratorT InEnd,
81 PredicateT IsSpace )
82 {
83 typedef BOOST_STRING_TYPENAME
84 std::iterator_traits<ForwardIteratorT>::iterator_category category;
85
86 return ::boost::algorithm::detail::trim_end_iter_select( InBegin, InEnd, IsSpace, category() );
87 }
88
89
90 } // namespace detail

Callers 3

trim_right_copy_ifFunction · 0.85
trim_right_ifFunction · 0.85
trim_copy_ifFunction · 0.85

Calls 1

trim_end_iter_selectFunction · 0.85

Tested by

no test coverage detected