Tagged Questions
The boost-any 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
776 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 ...
6
votes
2answers
311 views
Building boost::options from a string/boost::any map
I have a map which represents a configuration. It's a map of std::string and boost::any.
This map is initialized at the start and I'd like the user to be able to override these options on the ...
5
votes
1answer
225 views
Better handling of missing/wrong key in boost::program_options
Is there a way to know which key was involved when a call like the following fails ?
boost::program_options::variables_map vm;
...
int foo_bar = vm["some_key"].as<int>();
If the key is ...
4
votes
3answers
327 views
Compare boost::any contents
I am using a container to hold a list of pointers to anything:
struct Example {
std::vector<boost::any> elements;
}
To insert elements in this container, I had written a couple of helper ...
3
votes
2answers
219 views
Accessing Values in a Class Similar to boost::any
I'm making a simple boost::any-like class for educational purposes, but I can't figure out how to access the stored value. I can set the value perfectly, but when I try to access any member in the ...
3
votes
3answers
528 views
Boost::any and polymorphism
I am using boost::any to store pointers and was wondering if there was
a way to extract a polymorphic data type.
Here is a simple example of what ideally I'd like to do, but currently doesn't work.
...
2
votes
1answer
66 views
Is there a way get an integer out of boost::any if you don't know if original type was signed or unsigned
I'm using boost::any in combination with boost::any_cast<> to write some framework code which should take a set of arguments, almost like a function call, and convert them into an array of ...
2
votes
3answers
223 views
Polymorphic operator on a list of boost::any?
Suppose I have a list of type list<boost::any> that has some type in it that is unknown. Now suppose I want to apply some operation to the elements in the list that is polymorphic. In this case, ...
2
votes
2answers
597 views
C++ - boost::any serialization
As far as I understand, there is no serialization (boost::serialization, actually) support for boost::any placeholder.
Does someone know if there is a way to serialize a custom boost::any entity?
...
1
vote
2answers
63 views
How do I initialize boost::any with a reference to an object?
I want to store a reference to an object in a boost::any object. How do I initialize the boost::any object? I tried std::ref(), but boost::any gets initialized with std::reference_wrapper<>. For ...
1
vote
1answer
64 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
Implementing boost any like class
I am trying to emulate boost::any for a toy language of mine, following the accepted answer from the following question,
Accessing Values in a Class Similar to boost::any
I can have,
Element e1 = ...
1
vote
2answers
251 views
c++ boost::any to define my own print ,
Am struggling a lot to find how to do to use boost::any to create a print function that can print any type using template first.
template <typename T>
struct printer {
void ...
1
vote
1answer
2k views
how to use boost::any_cast (c++ library) to cast to base types?
I am using boost::any to have polymorphic types, I need to be able to cast an object to its base type.
class A {
public:
int x;
virtual int foo()= 0;
};
class B : public A {
...
0
votes
2answers
184 views
Why doesn't boost::any have a “getter”?
Using boost::any is very useful but it's very depressing that it has no getter, and always we have to use any_cast for casting it to type we want. But why it has no such thing? In my opinion the one ...
0
votes
1answer
193 views
Overload operator == for STL container
I'm trying to remove a class object from list<boost::any> l
l.remove(class_type);
I tried writing something like this as a member function
bool operator == (const class_type &a) const ...