I am learning Boost-Spirit, from here and examples from StackOverflow.
However, I can’t find the difference between >and the >>“followed by” sequence operator?
For instance, the difference is here: -
qi::phrase_parse(startIt
, endIt
, par_ob > ';'
, qi::space
, result
);
source
share