SHOGUN  4.2.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
List of all members | Classes | Public Member Functions | Friends
Any Class Reference

Detailed Description

Allows to store objects of arbitrary types by using a BaseAnyPolicy and provides a type agnostic API. See its usage in CSGObject::Self, CSGObject::set(), CSGObject::get() and CSGObject::has().

Definition at line 159 of file any.h.

Classes

struct  Empty
 

Public Member Functions

 Any ()
 
template<typename T >
 Any (const T &v)
 
 Any (const Any &other)
 
Anyoperator= (const Any &other)
 
 ~Any ()
 
template<typename T >
T & as () const
 
template<typename T >
bool same_type () const
 
template<typename T >
bool same_type_fallback () const
 
bool empty () const
 

Friends

bool operator== (const Any &lhs, const Any &rhs)
 
bool operator!= (const Any &lhs, const Any &rhs)
 

Constructor & Destructor Documentation

Any ( )

Constructor

Definition at line 166 of file any.h.

Any ( const T &  v)
explicit

Constructor to copy value

Definition at line 172 of file any.h.

Any ( const Any other)

Copy constructor

Definition at line 178 of file any.h.

~Any ( )

Destructor

Definition at line 210 of file any.h.

Member Function Documentation

T& as ( ) const

Casts hidden value to provided type, fails otherwise.

Returns
type-casted value

Definition at line 219 of file any.h.

bool empty ( ) const
Returns
true if Any object is empty.

Definition at line 247 of file any.h.

Any& operator= ( const Any other)

Assignment operator

Parameters
otheranother Any object
Returns
Any object

Definition at line 187 of file any.h.

bool same_type ( ) const
Returns
true if type is same.

Definition at line 234 of file any.h.

bool same_type_fallback ( ) const
Returns
true if type-id is same.

Definition at line 241 of file any.h.

Friends And Related Function Documentation

bool operator!= ( const Any lhs,
const Any rhs 
)
friend

Inequality operator

Parameters
lhsAny object on left hand side
rhsAny object on right hand side
Returns
false if both are equal

Definition at line 272 of file any.h.

bool operator== ( const Any lhs,
const Any rhs 
)
friend

Equality operator

Parameters
lhsAny object on left hand side
rhsAny object on right hand side
Returns
true if both are equal

Definition at line 264 of file any.h.


The documentation for this class was generated from the following file:

SHOGUN Machine Learning Toolbox - Documentation