Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6764807
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T14:38:13+00:00 2026-05-26T14:38:13+00:00

Using Boost.Spirit, is it possible to deliver a terminal token to multiple actions and

  • 0

Using Boost.Spirit, is it possible to deliver a terminal token to multiple actions and if so, what would the syntax be?

For example, suppose I have two rules:
rule 1 that consumes “A B” and has an associated action “void f( <attribute type of A>, <attribute type of B>)” and rule 2 that consumes “B C” and has an associated action “void g( <attribute type of B>, <attribute type of C>)”.

Given the input stream “A1 B1 C1”, I want f(A1,B1) and g(B1,C1) to be invoked.

Edit: Some more research suggests using the And-Predicate may allow this.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T14:38:14+00:00Added an answer on May 26, 2026 at 2:38 pm

    Use local variables:

    qi::rule<Iterator, qi::locals<B> > r = 
        (a >> b)[lf(_1, _2), _a  = _2] >> c[lg(_a, _1)];
    

    I’m assuming here that lf() and lg() are lazy function (i.e. wrappers for your underlying f() and g()). See here for more information about locals. The disadvantage is that you make a copy of b’s attribute.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using Boost Spirit parser, and as the parser is parsing, semantic actions
I have been successfully using boost::spirit::qi to to parse a stream consisting of the
I have a strange problem with a calculator made using boost::spirit. This calculator is
I have just started using Boost 1.36. These libraries would be very useful in
In the boost::spirit documentation, grammars are defined by using struct. For example, template <typename
I'm using boost::asio, and I have code like this: void CServer::Start(int port) { tcp::acceptor
I'm new in using boost and have a problem. I need shared_mutex function in
I am using boost shared pointers in my program, and I have a class
I started using spirit yesterday. I have to write a parser for a small
I want to parse a file into an AST using Boost Spirit. The root

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.