本文整理汇总了C++中empty_formatter函数的典型用法代码示例。如果您正苦于以下问题:C++ empty_formatter函数的具体用法?C++ empty_formatter怎么用?C++ empty_formatter使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了empty_formatter函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: erase_head
inline void erase_head(
SequenceT& Input,
int N )
{
find_format(
Input,
head_finder(N),
empty_formatter( Input ) );
}
示例2: erase_last
inline void erase_last(
SequenceT& Input,
const RangeT& Search )
{
find_format(
Input,
last_finder(Search),
empty_formatter(Input) );
}
示例3: erase_tail
inline void erase_tail(
SequenceT& Input,
int N )
{
find_format(
Input,
tail_finder(N),
empty_formatter( Input ) );
}
示例4: erase_head_copy
inline SequenceT erase_head_copy(
const SequenceT& Input,
unsigned int N )
{
return find_format_copy(
Input,
head_finder(N),
empty_formatter( Input ) );
}
示例5: erase_all
inline void erase_all(
SequenceT& Input,
const RangeT& Search )
{
find_format_all(
Input,
first_finder(Search),
empty_formatter(Input) );
}
示例6: erase_all_copy
inline SequenceT erase_all_copy(
const SequenceT& Input,
const RangeT& Search )
{
return find_format_all_copy(
Input,
first_finder(Search),
empty_formatter(Input) );
}
示例7: erase_tail_copy
inline SequenceT erase_tail_copy(
const SequenceT& Input,
int N )
{
return find_format_copy(
Input,
tail_finder(N),
empty_formatter( Input ) );
}
示例8: erase_nth
inline void erase_nth(
SequenceT& Input,
const RangeT& Search,
int Nth )
{
find_format(
Input,
nth_finder(Search, Nth),
empty_formatter(Input) );
}
示例9: erase_nth_copy
inline SequenceT erase_nth_copy(
const SequenceT& Input,
const RangeT& Search,
int Nth )
{
return find_format_copy(
Input,
nth_finder(Search, Nth),
empty_formatter(Input) );
}
示例10: ierase_all_copy
inline SequenceT ierase_all_copy(
const SequenceT& Input,
const RangeT& Search,
const std::locale& Loc=std::locale() )
{
return find_format_all_copy(
Input,
first_finder(Search, is_iequal(Loc)),
empty_formatter(Input) );
}
示例11: erase_all_regex
inline void erase_all_regex(
SequenceT& Input,
const basic_regex<CharT, RegexTraitsT>& Rx,
match_flag_type Flags=match_default )
{
find_format_all(
Input,
regex_finder( Rx, Flags ),
empty_formatter( Input ) );
}
示例12: erase_all_regex_copy
inline SequenceT erase_all_regex_copy(
const SequenceT& Input,
const basic_regex<CharT, RegexTraitsT>& Rx,
match_flag_type Flags=match_default )
{
return find_format_all_copy(
Input,
regex_finder( Rx, Flags ),
empty_formatter( Input ) );
}
示例13: ierase_all
inline void ierase_all(
SequenceT& Input,
const RangeT& Search,
const std::locale& Loc=std::locale() )
{
find_format_all(
Input,
first_finder(Search, is_iequal(Loc)),
empty_formatter(Input) );
}
示例14: ierase_nth
inline void ierase_nth(
SequenceT& Input,
const RangeT& Search,
int Nth,
const std::locale& Loc=std::locale() )
{
find_format(
Input,
nth_finder(Search, Nth, is_iequal(Loc)),
empty_formatter(Input) );
}
示例15: ierase_nth_copy
inline SequenceT ierase_nth_copy(
const SequenceT& Input,
const RangeT& Search,
unsigned int Nth,
const std::locale& Loc=std::locale() )
{
return find_format_copy(
Input,
nth_finder(Search, Nth, is_iequal(Loc)),
empty_formatter(Input) );
}