mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
add weed::parse_range
This commit is contained in:
parent
d950e99b51
commit
e3511d71b0
2 changed files with 23 additions and 10 deletions
6
README
6
README
|
@ -31,11 +31,11 @@ Sprout C++ Library Wiki: http://www.boleros.x0.com/doc/sproutwiki/
|
||||||
-- sprout/bitset.hpp - std::bitset 互換のビットセット
|
-- sprout/bitset.hpp - std::bitset 互換のビットセット
|
||||||
|
|
||||||
- アルゴリズム (Algorithms)
|
- アルゴリズム (Algorithms)
|
||||||
-- sprout/algorithm.hpp - STL 互換の非変更アルゴリズムと、変更アルゴリズム
|
-- sprout/algorithm.hpp - STL 互換のアルゴリズム
|
||||||
-- sprout/algorithm/string.hpp - 文字列用アルゴリズム
|
-- sprout/algorithm/string.hpp - 文字列用アルゴリズム
|
||||||
-- sprout/numeric.hpp - STL 互換の非変更数値アルゴリズムと、変更数値アルゴリズム
|
-- sprout/numeric.hpp - STL 互換の数値シーケンスアルゴリズム
|
||||||
-- sprout/range/algorithm.hpp - Rangeベースのアルゴリズム
|
-- sprout/range/algorithm.hpp - Rangeベースのアルゴリズム
|
||||||
-- sprout/range/numeric.hpp - Rangeベースの数値アルゴリズム
|
-- sprout/range/numeric.hpp - Rangeベースの数値シーケンスアルゴリズム
|
||||||
-- sprout/range/adaptor.hpp - Rangeアダプタ
|
-- sprout/range/adaptor.hpp - Rangeアダプタ
|
||||||
-- sprout/numeric/dft.hpp - 離散フーリエ変換
|
-- sprout/numeric/dft.hpp - 離散フーリエ変換
|
||||||
-- sprout/range/numeric/dft.hpp - Rangeベースの離散フーリエ変換
|
-- sprout/range/numeric/dft.hpp - Rangeベースの離散フーリエ変換
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
#define SPROUT_WEED_PARSE_HPP
|
#define SPROUT_WEED_PARSE_HPP
|
||||||
|
|
||||||
#include <sprout/config.hpp>
|
#include <sprout/config.hpp>
|
||||||
|
#include <sprout/container/functions.hpp>
|
||||||
|
#include <sprout/container/traits.hpp>
|
||||||
#include <sprout/weed/expr/make_terminal_or_expr.hpp>
|
#include <sprout/weed/expr/make_terminal_or_expr.hpp>
|
||||||
#include <sprout/weed/context/parse_context.hpp>
|
#include <sprout/weed/context/parse_context.hpp>
|
||||||
#include <sprout/weed/traits/expr/terminal_or_expr_of.hpp>
|
#include <sprout/weed/traits/expr/terminal_or_expr_of.hpp>
|
||||||
|
@ -12,20 +14,31 @@ namespace sprout {
|
||||||
// parse
|
// parse
|
||||||
//
|
//
|
||||||
template<typename Iterator, typename Parser>
|
template<typename Iterator, typename Parser>
|
||||||
inline SPROUT_CONSTEXPR typename sprout::weed::parse_context<Iterator>::template eval<
|
inline SPROUT_CONSTEXPR typename sprout::weed::parse_context<
|
||||||
|
Iterator
|
||||||
|
>::template eval<
|
||||||
typename sprout::weed::traits::terminal_or_expr_of<Parser>::type
|
typename sprout::weed::traits::terminal_or_expr_of<Parser>::type
|
||||||
>::result_type::presult_type parse(
|
>::result_type::presult_type
|
||||||
Iterator first,
|
parse(Iterator first, Iterator last, Parser const& parser) {
|
||||||
Iterator last,
|
|
||||||
Parser const& parser
|
|
||||||
)
|
|
||||||
{
|
|
||||||
return sprout::weed::eval(
|
return sprout::weed::eval(
|
||||||
sprout::weed::make_terminal_or_expr(parser),
|
sprout::weed::make_terminal_or_expr(parser),
|
||||||
sprout::weed::parse_context<Iterator>(first, last)
|
sprout::weed::parse_context<Iterator>(first, last)
|
||||||
).presult()
|
).presult()
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// parse_range
|
||||||
|
//
|
||||||
|
template<typename Range, typename Parser>
|
||||||
|
inline SPROUT_CONSTEXPR typename sprout::weed::parse_context<
|
||||||
|
typename sprout::container_traits<Range>::const_iterator
|
||||||
|
>::template eval<
|
||||||
|
typename sprout::weed::traits::terminal_or_expr_of<Parser>::type
|
||||||
|
>::result_type::presult_type
|
||||||
|
parse_range(Range const& range, Parser const& parser) {
|
||||||
|
return sprout::weed::parse(sprout::begin(range), sprout::end(range), parser);
|
||||||
|
}
|
||||||
} // namespace weed
|
} // namespace weed
|
||||||
} // namespace sprout
|
} // namespace sprout
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue