Bitcoin ABC  0.29.2
P2P Digital Currency
spanparsing.h
Go to the documentation of this file.
1 // Copyright (c) 2018 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #ifndef BITCOIN_UTIL_SPANPARSING_H
6 #define BITCOIN_UTIL_SPANPARSING_H
7 
8 #include <span.h>
9 
10 #include <string>
11 #include <vector>
12 
13 namespace spanparsing {
14 
21 bool Const(const std::string &str, Span<const char> &sp);
22 
30 bool Func(const std::string &str, Span<const char> &sp);
31 
42 
51 template <typename T = Span<const char>>
52 std::vector<T> Split(const Span<const char> &sp, char sep) {
53  std::vector<T> ret;
54  auto it = sp.begin();
55  auto start = it;
56  while (it != sp.end()) {
57  if (*it == sep) {
58  ret.emplace_back(start, it);
59  start = it + 1;
60  }
61  ++it;
62  }
63  ret.emplace_back(start, it);
64  return ret;
65 }
66 
67 } // namespace spanparsing
68 
69 #endif // BITCOIN_UTIL_SPANPARSING_H
A Span is an object that can refer to a contiguous sequence of objects.
Definition: span.h:93
constexpr C * end() const noexcept
Definition: span.h:200
constexpr C * begin() const noexcept
Definition: span.h:199
std::vector< T > Split(const Span< const char > &sp, char sep)
Split a string on every instance of sep, returning a vector.
Definition: spanparsing.h:52
Span< const char > Expr(Span< const char > &sp)
Extract the expression that sp begins with.
Definition: spanparsing.cpp:33
bool Const(const std::string &str, Span< const char > &sp)
Parse a constant.
Definition: spanparsing.cpp:14
bool Func(const std::string &str, Span< const char > &sp)
Parse a function call.
Definition: spanparsing.cpp:23