|
template<typename... Args> |
auto | operator() (Args &&...args) const -> decltype(base()(std::forward< Args >(args)...)) |
|
template<typename Arg0 , typename... Args> |
auto | operator() (Arg0 &&arg0, std::initializer_list< int > subs, Args &&...args) const -> decltype(base()(std::forward< Arg0 >(arg0), std::move(subs), std::forward< Args >(args)...)) |
|
template<typename Arg0 , typename Arg1 , typename... Args> |
auto | operator() (Arg0 &&arg0, Arg1 &&arg1, std::initializer_list< int > subs, Args &&...args) const -> decltype(base()(std::forward< Arg0 >(arg0), std::forward< Arg1 >(arg1), std::move(subs), std::forward< Args >(args)...)) |
|
template<typename Rng , typename Regex > |
tokenize_view< all_t< Rng >, Regex, int > | operator() (Rng &&rng, Regex &&rex, int sub=0, std::regex_constants::match_flag_type flags=std::regex_constants::match_default) const |
|
template<typename Rng , typename Regex > |
tokenize_view< all_t< Rng >, Regex, std::vector< int > > | operator() (Rng &&rng, Regex &&rex, std::vector< int > subs, std::regex_constants::match_flag_type flags=std::regex_constants::match_default) const |
|
template<typename Rng , typename Regex > |
tokenize_view< all_t< Rng >, Regex, std::initializer_list< int > > | operator() (Rng &&rng, Regex &&rex, std::initializer_list< int > subs, std::regex_constants::match_flag_type flags=std::regex_constants::match_default) const |
|
template<typename Regex > |
auto | operator() (Regex &&rex, int sub=0, std::regex_constants::match_flag_type flags=std::regex_constants::match_default) const -> decltype(make_pipeable(std::bind(*this, std::placeholders::_1, bind_forward< Regex >(rex), std::move(sub), std::move(flags)))) |
|
template<typename Regex > |
auto | operator() (Regex &&rex, std::vector< int > subs, std::regex_constants::match_flag_type flags=std::regex_constants::match_default) const -> decltype(make_pipeable(std::bind(*this, std::placeholders::_1, bind_forward< Regex >(rex), std::move(subs), std::move(flags)))) |
|
template<typename Regex > |
auto | operator() (Regex &&rex, std::initializer_list< int > subs, std::regex_constants::match_flag_type flags=std::regex_constants::match_default) const -> decltype(make_pipeable(std::bind(*this, std::placeholders::_1, bind_forward< Regex >(rex), std::move(subs), std::move(flags)))) |
|