Tagged Questions
The boost-phoenix tag has no wiki summary.
14
votes
1answer
615 views
Functional data structures in C++
Does anyone know of a C++ data structure library providing functional (a.k.a. immutable, or "persistent" in the FP sense) equivalents of the familiar STL structures?
By "functional" I mean that the ...
8
votes
1answer
641 views
boost lambda versus phoenix
I recently started looking at boost phoenix, as replacement for lambda.
Is phoenix a full replacement for lambda, or is there some lambda functionality which is not provided by phoenix? is phoenix ...
7
votes
1answer
533 views
Understanding and using the Boost Phoenix Library with a focus on lazy evaluation
I just found out about the Boost Phoenix library (hidden in the Spirit project) and as a fan of the functional-programming style (but still an amateur; some small experience with haskell and scheme) i ...
7
votes
1answer
723 views
What is the difference between Boost::bind and Boost Phoenix::bind?
What is the difference between Boost::bind and Boost Phoenix::bind?
6
votes
2answers
228 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 ...
6
votes
2answers
397 views
When is boost phoenix useful?
So I started reading the documentation for boost phoenix.
However, I must admit that I don't quite understand the purpose of the library, especially since we have language support for lambdas in ...
5
votes
3answers
535 views
Boost::Spirit::Qi. How to turn inlined parser expressions into standalone grammars, and how to unpack the tuples generated by them?
I'm using QI and Phoenix, and I want to write a small grammar that returns 4 bools which are to be used as arguments for a function call inside a semantic action.
I have several functions that need ...
4
votes
1answer
65 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 ...
4
votes
1answer
212 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 ...
4
votes
2answers
971 views
Boost phoenix or lambda library problem: removing elements from a std::vector
I recently ran into a problem that I thought boost::lambda or boost::phoenix could help be solve, but I was not able to get the syntax right and so I did it another way. What I wanted to do was remove ...
3
votes
2answers
496 views
C++ boost::lambda::ret equivalent in phoenix
Boost lambda allows to overwrite deduced return type using ret<T> template.
I have tried searching for equivalent in phoenix but could not find one.
Is there an equivalent in phoenix? I know ...
2
votes
2answers
84 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);
...
2
votes
3answers
377 views
How to access boost::variant members from Spirit::Qi rule?
I can't find a proper way how to access members of boost::variant using boost::phoenix in my Spirit-Qi grammar. Here is simple an example what I’m trying to achieve. (my whole grammar is much more ...
2
votes
5answers
353 views
What are the benefits of using Boost.Phoenix?
I can not understand what the real benefits of using Boost.Phoenix.
When I use it with Boost.Spirit grammars, it's really useful:
double_[ boost::phoenix::push_back( boost::phoenix::ref( v ), _1 ) ...
2
votes
1answer
621 views
Boost.Spirit.Qi: Take a rule's attribute and set it as a field of an enclosing rule's struct attribute?
Like, many of these other questions, I'm trying to parse a simple grammar into a tree of structs using Boost.Spirit.Qi.
I'll try to distill what I'm trying to do to the simplest possible case. I ...
2
votes
1answer
244 views
How to use a phoenix expression with boost::transform_iterator?
<Update> As usual for me, the question was a wrong one. The actual question is: why doesn't transform_iterator use the conventional result_of<> metafunction to determine the return type, ...
2
votes
6answers
1k views
boost lambda or phoenix problem: using std::for_each to operate on each element of a container
I ran into a problem while cleaning up some old code. This is the function:
uint32_t ADT::get_connectivity_data( std::vector< std::vector<uint8_t> > &output )
{
...
1
vote
1answer
105 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() :
...
1
vote
1answer
103 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 ...
1
vote
2answers
140 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 ...
1
vote
2answers
132 views
How to use a sequence of statements in Boost.Phoenix together with std::transform?
I'd like to use Boost.Phoenix to create a lambda function that consists of a few lines of code and then "returns" a value so I can use it together with std::transform.
Like this:
...
1
vote
1answer
166 views
Boost Phoenix (or Boost Lambda) - taking a pointer lazily
Is there a way of taking a pointer of a lazy phoenix value / ref ? If so how ?
1
vote
1answer
266 views
How can I extract a std::string with boost.spirit?
Using boost.spirit I try to parse simple command line of the form command:param1 param2...
to do so I created this parser:
(+(char_ - ':'))[ref(cmd) = _1]
>> ':'
>> (*char_)[ref(params) ...
1
vote
1answer
353 views
Parsing with Boost Spirit, getting extra items
This is long with a lot of code, so I hope Stack Overflow can cope with it. :P
I'm trying to write an SVG parser with Boost Spirit. I have a grammar that populates a vector with "Contours," which ...
1
vote
1answer
588 views
Boost Spirit rule with custom attribute parsing
I am writing a Boost Spirit grammar to parse text into a vector of these structs:
struct Pair
{
double a;
double b;
};
BOOST_FUSION_ADAPT_STRUCT(
Pair,
(double, a)
(double, a)
)
...
0
votes
1answer
38 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
60 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 ...
0
votes
3answers
77 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 ...
0
votes
1answer
46 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 ...
0
votes
1answer
78 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 ...
0
votes
1answer
51 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
104 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 << ...
0
votes
2answers
59 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 ...
0
votes
2answers
233 views
c++ functional programming ( boost::phoenix && boost::spirit) testing for null-ptrs in pointer placeholders
So, I have the following spirit karma rule body:
base_rule =
eps(_r1 != 0) [ // _r1 is a pointer_typed placeholder
eps
]
;
which leads to a rather long error message from g++ which ...
0
votes
1answer
213 views
Boost Spirit and Boost Phoenix questions
one. Is it possible to define that a spirit rule's local variable be default constructed using a parameter passed into the rule ? I have AST builder objects that have a cyclic dependency, I would like ...
0
votes
1answer
269 views
Boost Phoenix: Binding to reference members of structures?
I would like to use Boost Phoenix to generate a lambda function for use in a std::find_if operation on a structure that contains reference-type members. A contrived example is as follows:
struct ...
0
votes
2answers
119 views
Compiliation errors on boost files
I'm getting a lot of errors compiling code using the boost libraries, mainly when I'm using Spirit namespace. The errors are syntax errors on boost files like:
...
0
votes
1answer
436 views
Error on boost phoenix::bind compiling
I'm using phoenix::bind and receiving this error message:
error C2039: 'bind' : is not a member
of 'phoenix'
The code line where I'm using bind and where the error is pointing is:
...