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

Method substr

extern/boost/boost/test/utils/basic_cstring/basic_cstring.hpp:591–599  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

589
590template<typename CharT>
591inline basic_cstring<CharT>
592basic_cstring<CharT>::substr( size_type beg_index, size_type end_index ) const
593{
594 return beg_index > size()
595 ? self_type()
596 : end_index > size()
597 ? self_type( m_begin + beg_index, m_end )
598 : self_type( m_begin + beg_index, m_begin + end_index );
599}
600
601//____________________________________________________________________________//
602

Callers 5

print_escaped_cdataFunction · 0.45
parameter.hppFile · 0.45
validate_token_formatMethod · 0.45
rd_stringMethod · 0.45

Calls 1

sizeFunction · 0.50

Tested by

no test coverage detected