#include "tokens.h"
|
template<typename Iterator , typename Context , typename Skipper , typename Attribute > |
bool | parse (Iterator &first, Iterator const &last, Context &, Skipper const &skipper, Attribute &attr) const |
|
template<typename Context > |
boost::spirit::info | what (Context &) const |
|
Definition at line 323 of file tokens.h.
template<typename Iterator , typename Context , typename Skipper , typename Attribute >
bool fhicl::bin_parser::parse |
( |
Iterator & |
first, |
|
|
Iterator const & |
last, |
|
|
Context & |
, |
|
|
Skipper const & |
skipper, |
|
|
Attribute & |
attr |
|
) |
| const |
|
inline |
Definition at line 336 of file tokens.h.
References fhicl::maximally_munched_number().
342 boost::spirit::qi::skip_over(first, last, skipper);
344 static std::string
const allowed{
"01"};
347 if (it == last || *it !=
'0')
352 if (it == last || toupper(*it) !=
'B')
357 while (it != last && allowed.find(*it) != std::string::npos)
363 Attribute
raw(first, it);
364 if (
raw.empty() ||
raw.size() == 2)
368 if (!cet::canonical_number(
raw, result))
372 boost::spirit::traits::assign_to(result, attr);
bool maximally_munched_number(char const ch)
template<typename Context >
boost::spirit::info fhicl::bin_parser::what |
( |
Context & |
| ) |
const |
|
inline |
Definition at line 379 of file tokens.h.
381 return boost::spirit::info{
"fhicl::bin"};
The documentation for this struct was generated from the following file: