32 template<
class T,
class U = T,
class V = T>
41 inline drwnTriplet(
const T& i,
const U& j,
const V& k) :
50 inline bool operator<(const drwnTriplet<T,U,V>& t)
const;
55 template<
class T,
class U,
class V>
64 template<
class T,
class U,
class V>
69 template<
class T,
class U,
class V>
U second
second object in the triplet
Definition: drwnTriplet.h:36
V third
third object in thr triplet
Definition: drwnTriplet.h:37
T first
first object in the triplet
Definition: drwnTriplet.h:35
Basic datatype for holding three objects of arbitrary type. Similar to the STL pair<> class...
Definition: drwnTriplet.h:33