init
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
This commit is contained in:
207
Telegram/ThirdParty/range-v3/include/range/v3/view/tokenize.hpp
vendored
Normal file
207
Telegram/ThirdParty/range-v3/include/range/v3/view/tokenize.hpp
vendored
Normal file
@@ -0,0 +1,207 @@
|
||||
/// \file
|
||||
// Range v3 library
|
||||
//
|
||||
// Copyright Eric Niebler 2013-present
|
||||
//
|
||||
// Use, modification and distribution is subject to the
|
||||
// Boost Software License, Version 1.0. (See accompanying
|
||||
// file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
//
|
||||
// Project home: https://github.com/ericniebler/range-v3
|
||||
//
|
||||
|
||||
#ifndef RANGES_V3_VIEW_TOKENIZE_HPP
|
||||
#define RANGES_V3_VIEW_TOKENIZE_HPP
|
||||
|
||||
#include <initializer_list>
|
||||
#include <regex>
|
||||
#include <type_traits>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
#include <range/v3/range_fwd.hpp>
|
||||
|
||||
#include <range/v3/functional/bind_back.hpp>
|
||||
#include <range/v3/range/access.hpp>
|
||||
#include <range/v3/range/concepts.hpp>
|
||||
#include <range/v3/utility/static_const.hpp>
|
||||
#include <range/v3/view/all.hpp>
|
||||
#include <range/v3/view/interface.hpp>
|
||||
#include <range/v3/view/view.hpp>
|
||||
|
||||
#include <range/v3/detail/prologue.hpp>
|
||||
|
||||
namespace ranges
|
||||
{
|
||||
/// \addtogroup group-views
|
||||
/// @{
|
||||
template<typename Rng, typename Regex, typename SubMatchRange>
|
||||
struct tokenize_view
|
||||
: view_interface<tokenize_view<Rng, Regex, SubMatchRange>,
|
||||
is_finite<Rng>::value ? finite : range_cardinality<Rng>::value>
|
||||
{
|
||||
private:
|
||||
CPP_assert(bidirectional_range<Rng> && view_<Rng> && common_range<Rng>);
|
||||
CPP_assert(semiregular<Regex>);
|
||||
CPP_assert(semiregular<SubMatchRange>);
|
||||
|
||||
Rng rng_;
|
||||
Regex rex_;
|
||||
SubMatchRange subs_;
|
||||
std::regex_constants::match_flag_type flags_;
|
||||
template<bool Const>
|
||||
using iterator_t =
|
||||
std::regex_token_iterator<iterator_t<meta::const_if_c<Const, Rng>>>;
|
||||
|
||||
public:
|
||||
tokenize_view() = default;
|
||||
tokenize_view(Rng rng, Regex rex, SubMatchRange subs,
|
||||
std::regex_constants::match_flag_type flags)
|
||||
: rng_(std::move(rng))
|
||||
, rex_(std::move(rex))
|
||||
, subs_(std::move(subs))
|
||||
, flags_(flags)
|
||||
{}
|
||||
iterator_t<simple_view<Rng>()> begin()
|
||||
{
|
||||
meta::const_if_c<simple_view<Rng>(), Rng> & rng = rng_;
|
||||
return {ranges::begin(rng), ranges::end(rng), rex_, subs_, flags_};
|
||||
}
|
||||
template(bool Const = true)(
|
||||
requires range<Rng const>)
|
||||
iterator_t<Const> begin() const
|
||||
{
|
||||
return {ranges::begin(rng_), ranges::end(rng_), rex_, subs_, flags_};
|
||||
}
|
||||
iterator_t<simple_view<Rng>()> end()
|
||||
{
|
||||
return {};
|
||||
}
|
||||
template(bool Const = true)(
|
||||
requires range<Rng const>)
|
||||
iterator_t<Const> end() const
|
||||
{
|
||||
return {};
|
||||
}
|
||||
Rng base() const
|
||||
{
|
||||
return rng_;
|
||||
}
|
||||
};
|
||||
|
||||
#if RANGES_CXX_DEDUCTION_GUIDES >= RANGES_CXX_DEDUCTION_GUIDES_17
|
||||
template(typename Rng, typename Regex, typename SubMatchRange)(
|
||||
requires copy_constructible<Regex> AND copy_constructible<SubMatchRange>)
|
||||
tokenize_view(Rng &&, Regex, SubMatchRange)
|
||||
->tokenize_view<views::all_t<Rng>, Regex, SubMatchRange>;
|
||||
#endif
|
||||
|
||||
namespace views
|
||||
{
|
||||
struct tokenize_base_fn
|
||||
{
|
||||
template(typename Rng, typename Regex)(
|
||||
requires bidirectional_range<Rng> AND common_range<Rng> AND
|
||||
same_as< //
|
||||
range_value_t<Rng>, //
|
||||
typename detail::decay_t<Regex>::value_type>)
|
||||
tokenize_view<all_t<Rng>, detail::decay_t<Regex>, int> //
|
||||
operator()(Rng && rng,
|
||||
Regex && rex,
|
||||
int sub = 0,
|
||||
std::regex_constants::match_flag_type flags =
|
||||
std::regex_constants::match_default) const //
|
||||
{
|
||||
return {all(static_cast<Rng &&>(rng)),
|
||||
static_cast<Regex &&>(rex),
|
||||
sub,
|
||||
flags};
|
||||
}
|
||||
|
||||
template(typename Rng, typename Regex)(
|
||||
requires bidirectional_range<Rng> AND common_range<Rng> AND
|
||||
same_as<range_value_t<Rng>,
|
||||
typename detail::decay_t<Regex>::value_type>)
|
||||
tokenize_view<all_t<Rng>, detail::decay_t<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 //
|
||||
{
|
||||
return {all(static_cast<Rng &&>(rng)),
|
||||
static_cast<Regex &&>(rex),
|
||||
std::move(subs),
|
||||
flags};
|
||||
}
|
||||
|
||||
template(typename Rng, typename Regex)(
|
||||
requires bidirectional_range<Rng> AND common_range<Rng> AND
|
||||
same_as<range_value_t<Rng>,
|
||||
typename detail::decay_t<Regex>::value_type>)
|
||||
tokenize_view<all_t<Rng>,
|
||||
detail::decay_t<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 //
|
||||
{
|
||||
return {all(static_cast<Rng &&>(rng)),
|
||||
static_cast<Regex &&>(rex),
|
||||
std::move(subs),
|
||||
flags};
|
||||
}
|
||||
};
|
||||
|
||||
struct tokenize_fn : tokenize_base_fn
|
||||
{
|
||||
using tokenize_base_fn::operator();
|
||||
|
||||
template<typename Regex>
|
||||
constexpr auto operator()(Regex && rex,
|
||||
int sub = 0,
|
||||
std::regex_constants::match_flag_type flags =
|
||||
std::regex_constants::match_default) const
|
||||
{
|
||||
return make_view_closure(bind_back(
|
||||
tokenize_base_fn{}, static_cast<Regex &&>(rex), sub, 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
|
||||
{
|
||||
return bind_back(tokenize_base_fn{},
|
||||
static_cast<Regex &&>(rex),
|
||||
std::move(subs),
|
||||
flags);
|
||||
}
|
||||
|
||||
template<typename Regex>
|
||||
constexpr auto operator()(Regex && rex,
|
||||
std::initializer_list<int> subs,
|
||||
std::regex_constants::match_flag_type flags =
|
||||
std::regex_constants::match_default) const
|
||||
{
|
||||
return make_view_closure(bind_back(
|
||||
tokenize_base_fn{}, static_cast<Regex &&>(rex), subs, flags));
|
||||
}
|
||||
};
|
||||
|
||||
/// \relates tokenize_fn
|
||||
/// \ingroup group-views
|
||||
RANGES_INLINE_VARIABLE(tokenize_fn, tokenize)
|
||||
} // namespace views
|
||||
/// @}
|
||||
} // namespace ranges
|
||||
|
||||
#include <range/v3/detail/epilogue.hpp>
|
||||
#include <range/v3/detail/satisfy_boost_range.hpp>
|
||||
RANGES_SATISFY_BOOST_RANGE(::ranges::tokenize_view)
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user