Tagged Questions
The boost-tuples tag has no wiki summary.
23
votes
9answers
4k views
Boost::Tuples vs Structs for return values
I'm trying to get my head around tuples (thanks @litb), and the common suggestion for their use is for functions returning > 1 value.
This is something that I'd normally use a struct for , and I ...
6
votes
1answer
199 views
boost tuple: increasing maximum number of elements
The boost tuple documentation says:
The current version supports tuples
with 0-10 elements. If necessary, the
upper limit can be increased up to,
say, a few dozen elements.
However, I ...
5
votes
3answers
159 views
How to write a `<<` operator for boost::tuple?
In the sample code below, it shows that boost::tuple can be created implicitly from the first template argument.
Because of that I am not able to write a << operator as it becomes ambiguous.
...
5
votes
2answers
556 views
Boost tuple performance
According to boost::tuple documentation, accessing a single element of a tuple has the same performance as accessing a member variable. For example, given the following declaration:
tuple<A, B, ...
5
votes
2answers
2k views
const std::map<boost::tuples::tuple, std::string>?
// BOOST Includes
#include <boost/assign.hpp> // Boost::Assign
#include <boost/assign/list_of.hpp> // Boost::Assign::List_Of
#include <boost/assign/std/map.hpp> // ...
4
votes
1answer
115 views
C++ Tuple of Boost.Range - get Tuple of element types?
I am experimenting with Boost.Range and the Boost Tuple. If I have a Tuple of ranges, how can I typedef a Tuple or the corresponding element values? To put this another way, what do I put in place ...
4
votes
2answers
861 views
Is Boost.Tuple compatible with C++0x variadic templates?
I was playing around with variadic templates (gcc 4.5) and hit this problem :
template <typename... Args>
boost::tuple<Args...>
my_make_tuple(Args... args)
{
return ...
3
votes
2answers
510 views
Solving the mixin constructor problem in C++ using variadic templates
I've recently tackled the constructor problem, where various mixins classes that decorate each other (and a topmost host class) have different constructor signatures. To maintain a single constructor ...
2
votes
1answer
38 views
Constructing one concrete boost::tuple type using another
Given:
typedef boost::tuple< T1, T2, T3, ..., Tn > Tuple_Tn
where the types T1, ... Tn are all defined,
And given type T_another, I'd like to define a new tuple type:
typedef ...
2
votes
1answer
103 views
Traversing a C++ tuple in an order defined at runtime
It's possible to iterate over a boost or std tuple, but can I iterate in an order determined at runtime, while still retaining type information?
Suppose my tuple was filled with objects of type Foo:
...
2
votes
2answers
152 views
boost::bind doesn't work with boost::tuple::get<N>()
I am trying to use boost::bind and STL with boost::tuple, but each time I try to compile I get the following error.
error: call of overloaded ‘bind(<unresolved overloaded function type>,
...
2
votes
3answers
278 views
Tuples of unknown size/parameter types
I need to create a map, from integers to sets of tuples, the tuples in a single set have the same size. The problem is that the size of a tuple and its parameter types can be determined at runtime, ...
2
votes
1answer
451 views
Boost::tuple's equivalent to Python's itemgetter?
I have some code that looks like this:
typedef tuple<int, int, double> DataPoint;
vector<DataPoint> data;
vector<double> third_column_only;
// Code to read in data goes here.
...
1
vote
1answer
322 views
error: boost.fusion::for_each() and struct derived from boost.tuple
on compilation this code:
struct any_type: boost::tuple<std::string, std::string, std::string> {
...
};
struct functor {
void operator()(const std::string& v) {
std::cout ...
1
vote
1answer
217 views
Is boost tuple mutable?
I have been using a using a boost tuple as the value in an STL map.
Up until now, I only had to construct the tuple and insert into the map and at a later stage retrieve the values.
Now I need to be ...
0
votes
1answer
43 views
How does the boost tuple 'get' method work?
After delving into the source of the excellent boost tuple class (tuple_basic.hpp), I can see that a recursive templated algorithm is used in the 'get' method for accessing the tuple members.
What ...
0
votes
0answers
51 views
streaming to cout boost tuple composed of user defined structs [closed]
I'm trying to stream to cout a boost tuple composed of structs but I get an compilation error. According to:
http://www.boost.org/doc/libs/1_48_0/libs/tuple/doc/tuple_users_guide.html#streaming
...
0
votes
0answers
84 views
Boost Tuple or Fusion containers as baseclass [closed]
Should I avoid using Boost Tuples or Fusion containers as a baseclass? I'd like a custom constructor but may add other methods in future. I know STL containers should not be used as containers due ...
0
votes
3answers
118 views
number of templated parameters in a boost::tuple
I am using boost::tuple for my code.
Suppose that I want to store an equivalent of a structure having 3 members
typedef boost::tuple< std::string, int, double > my_struct;
is there any way ...
0
votes
1answer
179 views
reference to element in boost.fusion vector
EDIT - please ignore - the question resolved around a simple typo. I need a break.
How do I access a reference to an element of a boost fusion vector?
Unlike boost.tuples's ...
0
votes
2answers
354 views
Segmentation Faults with boost::tuple and std::map
I have trouble with using code similar to the following one:
std::map<boost::tuple<int, int, int>, int> m;
boost::tuple<int, int, int> key = boost::make_tuple(1,2,3);
m.find(key);
...
0
votes
1answer
126 views
Error in template function (using Boost.Tuples)
#include <list>
#include <boost/tuple/tuple.hpp>
template<class InputIterator>
void f(InputIterator it)
{
typedef boost::tuple<typename InputIterator::value_type, int> ...