Tagged Questions
The boost-variant tag has no wiki summary.
12
votes
1answer
5k views
Boost.Any vs. Boost.Variant
I'm having trouble choosing between Boost.Any and Boost.Variant.
When should I use each one?
What are the advantages and disadvantages of each?
I am basically looking to store some states from ...
10
votes
3answers
769 views
How do boost::variant and boost::any work?
How do variant and any from the boost library work internally? In a project I am working on, I currently use a tagged union. I want to use something else, because unions in C++ don't let you use ...
8
votes
3answers
537 views
Why does boost::variant not provide operator !=
Given two identical boost::variant instances a and b, the expression ( a == b ) is permitted.
However ( a != b ) seems to be undefined. Why is this?
6
votes
1answer
285 views
Iterating over the types in a boost::variant
I'm using a boost variant to hold some generated types, right now my code generator creates a header with the types and a variant capable of holding them. At initialization time, I'd like to iterate ...
5
votes
1answer
168 views
best way to do variant visitation with lambdas
I want to inline visitation of variant types with lambdas. At the moment i have the following code:
struct Foo {
boost::variant< boost::blank , int , string , vector< int > > var;
...
4
votes
1answer
202 views
Why does boost::spirit::qi::parse() not set this boost::variant's value?
When trying to parse text into a boost::variant, the variant's value does not get changed.
The parsers by themselves appear to work fine, so my assumption is that I'm doing something wrong with the ...
3
votes
2answers
162 views
How to decide on stack vs heap vs boost::pool allocation in a case like this?
I have a class that uses boost::variant to store a double or a string, like this :
class value
{
boost::variant<double, std::string> val;
};
It's supposed to be an immutable value type for ...
3
votes
1answer
214 views
boost::variant recursive trouble
is there any way to make this work? I hope you'll get the idea, I'm trying to create a list by means of recursive pairs
#include <boost/variant.hpp>
#include <utility>
struct nil {};
...
3
votes
2answers
810 views
Is it safe to serialize a raw boost::variant?
boost::variant claims that it is a value type. Does this mean that it's safe to simply write out the raw representation of a boost::variant and load it back later, as long as it only contains POD ...
3
votes
1answer
913 views
“Cannot convert parameter” using boost::variant iterator
I want to create a function that can take different types of iterators which store the same type of object:
The first is a std::map containing shared_ptr<Foo> (typedef-ed as FooMap) and the ...
2
votes
1answer
178 views
Using mpl::vector to define boost::variant types
I'm using the library boost::variant to store a large number of types. As the number of type is growing, I will soon reach the limit of 20 types. In the documentation it seems possible to define the ...
2
votes
1answer
305 views
Boost Variant: How to model JSON?
I'm trying to parse JSON string using Boost Spirit store JSON object into recursive data structures:
Value <== [null, bool, long, double, std::string, Array, Object];
Array <== [Value, Value, ...
2
votes
1answer
93 views
using same datatype in boost variant
Can we explicitly typecast the value which is to be stored in boost varaint??
Example:
typedef int abc;
typedef int asd;
typedef boost::variant<abc, char, asd, float> link_try1;
int main()
...
2
votes
1answer
169 views
Why can't I visit this custom type with boost::variant?
The following code:
#include <boost/variant.hpp>
#include <iostream>
#include <string>
struct A
{
A()
{
}
~A() throw()
{
}
A& operator=(A const ...
2
votes
1answer
187 views
Boost-spirit-karma and boost-variant “concepts” related to auto generators
I need to deserialize a std::vector<boost::variant<..>> with decoration supplied by other objects.
One of the things the "decoration" enables is a empty entry in the vector. I have hit a ...
2
votes
2answers
872 views
visitor template for boost::variant
I would like to use a boost.variant<T0,T1,T2> as a parameter to a template 'Visitor' class which would provide visitor operators as required by the boost.variant visitor mechanism, in this case ...
2
votes
2answers
224 views
Iterate std::list<boost::variant>
How would you check for the object type when looping std::list?
class A
{
int x; int y;
public:
A() {x = 1; y = 2;}
};
class B
{
double x; double y;
public:
B() {x = 1; y = 2;}
};
...
2
votes
2answers
168 views
How to iterate through a sequence of bounded types with Boost.Variant
struct A
{
std::string get_string();
};
struct B
{
int value;
};
typedef boost::variant<A,B> var_types;
std::vector<var_types> v;
A a;
B b;
...
2
votes
1answer
628 views
Iterator for boost::variant
Hy there,
I'm trying to adapt an existing code to boost::variant. The idea is to use boost::variant for a heterogeneous vector. The problem is that the rest of the code use iterators to access the ...
2
votes
2answers
481 views
Adding member functions to a Boost.Variant
In my C++ library I have a type boost::variant<A,B> and lots of algorithms getting this type as an input. Instead of member functions I have global functions on this type, like void f( ...
2
votes
1answer
264 views
Problem with boost::variant, linker giving a segfault
I have a boost variant with 7 types in it. When I try to use the last two types, the linker segfaults. I am using g++ (gcc version 3.3.3 on SuSE Linux) on a 64 bit linux machine and the error that I ...
1
vote
1answer
61 views
C++ container of any/variant each element having unchanging type
I am using std::map<const char*, boost::any> to store my library's settings. Each setting only uses a single underlying value type and I want to enforce this during configuration calls to set() ...
1
vote
1answer
126 views
Boost::Variant and function_types in it: How to put functions into Boost::variant?
Lirics:
I try to implement a task pool over MPI. So I need some kind of RPC but one that would work between difrent parts of my programm, meaning processor A wants processor B to call function C with ...
1
vote
1answer
99 views
boost variant destructors results in segmentation fault
I faced a problem using a Boost variant. I have a segmentation fault when the variant gets destructed.
The weird thing is that this segmentation fault occurs only when I do not activate the ...
1
vote
1answer
82 views
boost::variant single storage guarantee
My goal is to guarantee single storage on all my variant types: according to 'never empty' guarantee from Boost::variant, we need to override
boost::has_nothrow_copy for each bounded type. But a bit ...
1
vote
1answer
140 views
How to load a serialized boost::variant?
I'm not able to use boost::serialization because it has library dependencies so I'm trying to figure out a way to do it myself. It doesn't matter if that means copying from boost::serialization.
...
1
vote
1answer
158 views
variant problem with compiling a file
I tried compiling the following code from this page:
http://www.pdc.kth.se/training/Talks/C++/boost/libs/variant/doc/sample.html
Under "A binary tree implementation" and I got a ton of errors that ...
1
vote
1answer
143 views
requirements on boost::static_visitor
I am a bit confused on the application of boost::static_visitor for
variants and structures. I have included a test case below. For
the commented out sections in "s_visitor", I do not understand ...
1
vote
1answer
271 views
boost::variant and getting data to encode for msgpack
I am using boost recursive variant to store the variant data which I want to encode using msgpack for which I need to get the raw data to pass into encode() function (see below).
I tried three ...
1
vote
2answers
175 views
boost::variant and printing methods of elements in vector
std::vector< boost::variant<std::string, int> > vec;
std::string s1("abacus");
int i1 = 42;
vec.push_back(s1);
vec.push_back(i1);
std::cout << vec.at(0).size() << "\n";
...
1
vote
2answers
105 views
Pass an object of a type aggregated by a boost::variant to a function that accepts that boost::variant
Suppose I have:
class TypeA { };
class TypeB { };
typedef boost::variant<TypeA, TypeB> Type;
This is ok:
void foo(Type t) { };
int main(){
TypeA a;
foo(a);
}
This does not ...
1
vote
2answers
266 views
How to compare boost::variant in order to make it a key of std::map?
How to compare boost::variant in order to make it a key of std::map ?
Seems that operator<() is not defined for boost::variant
1
vote
5answers
271 views
Most efficient way to store a mixed collection of doubles and ints
I need to store a collection of ints and doubles (representing nominal and real valued data) in c++. I could obviously store them all in a std::vector<double> , but this feels a bit wrong and ...
0
votes
2answers
105 views
Boost Variant: how to get currently held type?
As I understood all types of boost.variant are parsed into real types (meaning as if boost variant<int, string> a; a="bla-bla" would after compilation turn into string a; a="bla-bla") And so I ...
0
votes
1answer
122 views
Boost.Variant, Boost.MPL: How to append types?
I look at this grate code based on boost.Any and cant help but wonder if we could use Boost.Variant instead. I wonder if such API would be possible:
void voidFunc()
{
std::cout << "void ...
0
votes
1answer
86 views
Robust boost::variant serialization
I am using boost::variant and boost::serialize in my application. The serialization module has built in support for serializing variants, so:
boost::variant<int,double> u(3.14);
// Do ...
0
votes
2answers
88 views
using boost visitor to convert between types
Let's say that I have a
boost::variant<std::string, int> myVariant;
In this object I keep data from a database, which is usually integer or text, but sometimes is a time stored in the ...
0
votes
3answers
93 views
boost::variant get last accessed type
This is what I want to do:
boost::variant a<int, string>;
int b;
a=4;
b=a; //doesn't work. What is the easiest way to make b=4?
I know I can use get, but I want to be able to do this without ...
0
votes
0answers
48 views
Extending the number of types in Boost.Variant
How is it possible to extend the number of types in a boost::variant.
I tried to re-define BOOST_MPL_LIMIT_LIST_SIZE to 30 before including any boost header, but it does not seem to update some files ...
0
votes
1answer
248 views
google test EXPECT_EQ and boost::make_recursive_variant
I have a boost recursive variant as below. When I compare two recursive variant object using assert, it works fine but with EXPECT_EQ, it gives compile error.
typedef ...
0
votes
2answers
311 views
Applying a boost::mpl::list to the template parameter of a type
I have a class that requires a boost::variant containing shared pointers to various types as follows:
template <typename ToySharedPtrVariant, typename ColorSharedPtrVariant>
class ToyPicker {
...
0
votes
2answers
624 views
C++ template metaprogramming to create a boost::variant from a shared_ptr and a boost::static_visitor
As a personal exercise, I want to implement the visitor pattern using shared_ptr. I am familiar with Robert Martin's acyclic visitor paper but find the intrusive nature of the virtual accept() and ...
-1
votes
4answers
326 views
boost::Variant usage
I am developing GUI application via wxWidgets. It has 2 parts - GUI part and "Logic" part. I want to have Logic part totally independent on wxWidgets. But one component in GUI returning wxVariant and ...
-4
votes
1answer
77 views
c++ , and Boost :: variant Libraries [closed]
My code is look like:
enum a { b=0, b1=1 } ;
class enumaration { };
enumaration<a> cc
enum a1 { bb=0,bb1=1};
enumaration cc1 and so on , similar to like this
boost::variant<cc, ...