Boost.Phoenix is a C++ library to enable function programming in C++.
1
vote
1answer
40 views
How to avoid boost::phoenix when generating with boost::spirit::karma
I'm a victim of error "LNK1179: invalid or corrupt file: duplicate COMDAT"
and these sources lead me to believe that by not using phoenix I could avoid this error.
(This is a follow-up to my ...
0
votes
0answers
52 views
Cannot get simplest Phoenix lambda to compile
I am currently trying to get the following very simple boost::phoenix::lambda to compile:
#include <iostream>
#include <boost/phoenix/scope.hpp>
int main() {
...
0
votes
1answer
51 views
Variable hiding within nested let blocks in Boost Phoenix
I'm having some trouble with nested let blocks in Boost Phoenix when an "inner" local variable hides an "outer" local variable. Even with the "Visibility" example from the documentation here, shown ...
2
votes
1answer
45 views
Bind a boost signal with phoenix bind
I am using boost spirit qi to parse inbound data then dispatch the correct functionality depending on it's content.
I am using boost::signals to manage the callbacks; my problem is that I don't seem ...
0
votes
1answer
22 views
BOOST_PHOENIX_ADAPT_FUNCTION causes invalid template error
I am trying to create a lazy function from a template function following the Boost::phoenix documentation. The code looks like this
#include <iostream>
#include <boost/phoenix/core.hpp>
...
1
vote
2answers
82 views
Calling a function from within a boost::phoenix::lambda
I am trying to use boost::phoenix to emulate C++ lambda expressions on an older compiler that lacks C++11 support, and I am unable to call a simple function from within a lambda expression.
C++11 ...
2
votes
2answers
124 views
Can I stringify a Boost Phoenix expression?
Can I convert a Boost Phoenix expression into a representative string of C++? I could have:
stringify(_1<_2);
which might then produce a string containing something like:
template <class T1, ...
2
votes
1answer
148 views
Subscript operator[] error with Boost C++ Phoenix user-defined argument
With an existing Boost Phoenix (placeholder) argument, such as _1, I can use the array/subscript operator. For example, the following excerpt will display a 1.
int arr[4] = {1,2,3,4};
std::cout ...
2
votes
1answer
134 views
Confused by a boost spirit / phoenix / C++11 interaction
I've tried to reduce this problem as far as I can.
If I uncomment void initialize(), then this code compiles. If I leave it commented out, then it doesn't build.
The only way I've found to fix this ...
1
vote
1answer
65 views
Create a phoenix function for use in spirit rule
I'm trying to make the code below compile, but, as usual, errors with spirit/phoenix gives not a lot a clues about what is wrong. Can anyone see what the problem is ?
#include ...
2
votes
1answer
140 views
Cannot phoenix::bind qi::_val with boost 1.53 (regression ?)
The code below, using boost::spirit, used to work with boost 1.44 and boost 1.49:
qi::string("a_token")
[
boost::phoenix::bind(&node_t::some_func, *qi::_val, true)
]
I updated boost to ...
5
votes
1answer
206 views
Transforming Function Bodies within Boost Phoenix Expressions
How can I also include function bodies in a transformation of a Boost Phoenix expression?
For example, I have built on the Lazy Functions section of the Boost Phoenix Starter Kit, and created a lazy ...
1
vote
1answer
200 views
Displaying a Flattened Phoenix Expression using Boost Fusion
Following the Expressions as Fusion Sequences section of the Proto User Guide, I get to the point where I iterate over a flattened proto expression: _1 + 2 + 3 + 4:
#include <iostream>
#include ...
3
votes
1answer
260 views
Transforming a Boost C++ Phoenix Expression Tree
In the Boost Phoenix article, "Transforming the Expression Tree", here, a set of specialisations of a custom invert_actions class, are used to invert binary arithmetic expressions. For example a+b ...
1
vote
0answers
74 views
User defined arguments in Boost Phoenix
The Boost Phoenix documentation here indicates that I can create my own (lambda) arguments instead of _1/arg1, _2,arg2 etc. So, starting with code like this:
#include <iostream>
#include ...
1
vote
0answers
98 views
How to use a non-polymorphic lambda in Boost Proto/Phoenix?
I'd like to provide an API which accepts a user-defined Boost Phoenix lambda. Unlike a C++11 lambda, a Phoenix lambda is polymorphic.
I am able to use the [] operator of a lambda argument. The ...
2
votes
1answer
78 views
boost::spirit: multiple statements in semantic action block
boost::phoenix defines statement blocks using the operator "," (see boost phoenix block statements). I'm trying to use this construct in the semantic action part of a boost::spirit rule. However, it ...
0
votes
0answers
78 views
Capture by reference in boost::phoenix::lambda
I can create a boost::phoenix::lambda that captures by value. However, trying to modify a variable captured by value produces the following error
error: read-only variable is not assignable
...
2
votes
1answer
191 views
Evaluating result of boost::phoenix::insert
I'm having difficulties trying to evaluate the result of boost::phoenix::insert which inserts elements into a map. Similar to the regular std::map::insert the actor object returned by ...
2
votes
0answers
80 views
Boost Phoenix operator overload/redefinition?
Is there a (preferably easy) way to redefine one of the standard operators in Phoenix? I would like to have ">>" for example call my own (lazy) functor.
Simple use case: I might want to define a ...
2
votes
1answer
65 views
Can I tell at compile time whether a specific set of input types to a Boost.Phoenix lambda is valid?
Say I have a Boost.Phoenix lambda expression, like the following:
_1 * 4.5 + (3.0 / _2)
Is there a good way to, at compile time, detect whether the lambda expression is valid, given a list of types ...
2
votes
1answer
228 views
Using boost::phoenix::bind together with boost::spirit::qi::symbols::add
I want to parse a floating point number in a text file and insert it in a symbol table; the parser and the symbol table are provided by spirit::qi.
Here is my code:
#include ...
5
votes
1answer
173 views
Why does this proto/phoenix toy example crash?
I am experimenting with proto and phoenix and what is one of my first toy examples crash and I have no idea where I should be looking at. Since someone on the #boost IRC channel told me to ensure that ...
2
votes
1answer
71 views
Using boost::phoenix to adapt a BOOST_CHECK macro
During testing when using c++ 11 I have used the following construct:
std::for_each( coll.begin(), coll.end(),
[ &obj, expRes ]( const value_type& val )
{
BOOST_CHECK_EQUAL( ...
2
votes
1answer
104 views
Troubles with boost::phoenix::function<>
While using boost::phoenix::function<> I encountered some problems. As far as I know this lazy function requiries functor as its template parameter. So we must define a functor class/structure and ...
1
vote
3answers
250 views
What functional language approach most readily transfers to Boost Phoenix? [closed]
I am looking to learn functional programming with an am to integrate Boost.phoenix into my project.
What language is most similar so that I can find books that will illustrate functional programming ...
0
votes
3answers
133 views
What is wrong with my Phoenix lambda expression?
I would expect the following example Boost Phoenix expression to compile.
What am I missing?
int plus(int a,int b)
{
return a+b;
}
void main(int argc,char** argc)
{
auto plus_1 = ...
2
votes
1answer
85 views
How do I tell what parts of Boost have been deprecated?
I'm just starting to use boost for my embedded C++ programming. Lambda looked interesting so I was reading up on it. When I tried using stl algorithms with lambdas on containers of shared_ptrs I ran ...
0
votes
1answer
76 views
ref() in Boost::Lambda?
What is the equivalent of Boost::Phoenix's ref in Boost::Lambda? I can't find it in the online docs.
#include <algorithm>
#include <string>
#include <boost/lambda/bind.hpp>
using ...
12
votes
3answers
268 views
Does bind() have any advantage (other than compatibility) over C++11 lambdas?
I'm thinking about migrating my code toward using C++11-style lambdas instead of having binds everywhere. But I'm not sure if it's a good idea or not.
Does using e.g. boost::lambda (or ...
6
votes
2answers
225 views
Is Boost.Phoenix inherently slower than the equivalent C++11 lambdas (does it use virtual calls, 'volatile' usage, etc.)?
I always thought Boost.Phoenix used type-inference to infer everything statically, until I tried this code:
#include <vector>
#include <boost/phoenix/phoenix.hpp>
using namespace ...
1
vote
1answer
166 views
using boost.phoenix container algorithms
I have a Visual Studio 2008 C++03 application using boost 1.47 phoenix (Update: also with 1.49). I would like to define a boost::function to remove an element from a list. For example:
#include ...
7
votes
1answer
504 views
Static functions from boost.lambda or boost.phoenix
I regularly use boost.lambda (and phoenix) to define lambda functions in C++. I really like their polymorphic property, the simplicity of their representation and the way they make functional ...
4
votes
1answer
117 views
is there a better way of converting to upper case in boost spirit?
I did something along the lines of creating a struct for phoenix::function
struct to_upper_impl
{
template <typename T1>
struct result { typedef std::string type; };
std::string ...
2
votes
2answers
132 views
What's the execution sequence of phoenix::lambda function?
I'm a newbie for boost phoenix, I wrote a small piece of code but it totally confuses me about the execution sequence, you can check the code
std::vector<int> v;
v.push_back(1);
...
5
votes
1answer
204 views
Using boost phoenix, how can I invoke a find_if call with starts_with?
I'm trying to find an element in a vector of structs. The code works when searching in a case-sensitive manner. When I try enhancing it to be case-insensitive, I run into two issues.
Simply ...
2
votes
1answer
1k views
Boost::Spirit Expression Parser
I have another problem with my boost::spirit parser.
template<typename Iterator>
struct expression: qi::grammar<Iterator, ast::expression(), ascii::space_type> {
expression() :
...
2
votes
2answers
349 views
boost spirit: parameter type when using semantic actions and phoenix
I use boost spirit to parse mathematical expressions and have run into a problem that I extracted into the following code.
There is a simple lexer with one token, having an attribute holding the ...
0
votes
1answer
212 views
Boost binding with member functions/variables
Class A has access to class B.
In a class B function, I'd like to call a function defined in class A, and pass to it arguments from class B.
So in class A I try to write the following to provide the ...
0
votes
2answers
161 views
boost::phoenix::sort error
I am trying to sort a vector below using boost::phoenix library. The class Foo has a member function 'int getvalue()'. The purpose is to sort the vector using the value returned by 'getvalue()'. But ...
6
votes
2answers
961 views
Difference between boost::bind, boost::lambda::bind and boost::phoenix::bind
I am trying to understand the difference between these different bind approaches. There is a similar question at boost::bind and boost::phoenix::bind
But, if anyone can explain this with examples it ...
1
vote
3answers
204 views
Phoenix function semantic action not compiling
I wish to parse a string and ensure that it is lower case.
It has to be done at this stage because spirit builds tree out of it all.
so I have this rule
struct to_lower_object
{
typedef char ...
1
vote
1answer
122 views
Usage of `boost::phoenix::static_cast_` mixed with standard library
It is a Phoenix v3 bug. It compiles with Phoenix v2 just fine.
I did bug report.
I will mark this question as resolved in 2 days. Thank you all.
I am trying to make a short lamba with phoenix, but ...
1
vote
1answer
239 views
How to pass a function in parameter with Boost::Phoenix?
It's my first post here so plese be kind if I don't respect the "ways and customs" :)
I'm new using Boost::Phoenix and I want to pass a function to a methods defined like :
template <typename ...
1
vote
1answer
142 views
functional programming techniques for generating objects on the heap
There is example of code which generates N objects of class A on the heap:
#include <vector>
#include <iostream>
#include <algorithm>
#include <boost/shared_ptr.hpp>
#include ...
0
votes
1answer
81 views
boost::phoenix with VS2008
Simple example using boost::phoenix:
#include <vector>
#include <algorithm>
#include <boost/phoenix.hpp>
namespace ph = boost::phoenix;
namespace place = ...
0
votes
1answer
276 views
Boost phoenix actor as a fusion callable object
I was wondering if it was possible to create callable phoenix actors and use them in fusion sequences.
Given the following source:
struct FusionStruct
{
void Doit() const{std::cout << ...
1
vote
2answers
235 views
phoenix lambda and argument dereferencing
Can somebody show me how to implement an equivalent of the following using boost::phoenix lambda?
I know I could implement it in many other ways but I'm trying to learn the Phoenix lambda expressions ...
5
votes
1answer
550 views
How can I make std::find_if and std::map work together using some boost library?
This question is inspired from another topic which poses this question:
Find the first value greater than user specified value from a map container
which can be solved in several ways. A typical ...
1
vote
2answers
354 views
replacing a unary functor with a boost::phoenix actor
I have a Visual Studio 2008 C++ application where I would like to replace a unary functor with a boost::phoenix lambda expression.
In my case, I have list of objects with containing a string. I want ...