Teuchos - Trilinos Tools Package
Version of the Day
|
Modified boost::any class, which is a container for a templated value. More...
#include <Teuchos_any.hpp>
Public Member Functions | |
any () | |
Empty constructor. More... | |
template<typename ValueType > | |
any (const ValueType &value) | |
Templated constructor. More... | |
any (const any &other) | |
Copy constructor. More... | |
~any () | |
Destructor. More... | |
any & | swap (any &rhs) |
Method for swapping the contents of two any classes. More... | |
template<typename ValueType > | |
any & | operator= (const ValueType &rhs) |
Copy the value rhs More... | |
any & | operator= (const any &rhs) |
Copy the value held in rhs More... | |
bool | empty () const |
Return true if nothing is being stored. More... | |
const std::type_info & | type () const |
Return the type of value being stored. More... | |
std::string | typeName () const |
Return the name of the type. More... | |
bool | same (const any &other) const |
Return if two any objects are the same or not. More... | |
void | print (std::ostream &os) const |
Print this value to the output stream os More... | |
Related Functions | |
(Note that these are not member functions.) | |
template<typename ValueType > | |
ValueType & | any_cast (any &operand) |
Used to extract the templated value held in Teuchos::any to a given value type. More... | |
template<typename ValueType > | |
const ValueType & | any_cast (const any &operand) |
Used to extract the const templated value held in Teuchos::any to a given const value type. More... | |
std::string | toString (const any &rhs) |
Converts the value in any to a std::string. More... | |
bool | operator== (const any &a, const any &b) |
Returns true if two any objects have the same value. More... | |
bool | operator!= (const any &a, const any &b) |
Returns true if two any objects do not have the same value. More... | |
std::ostream & | operator<< (std::ostream &os, const any &rhs) |
Writes "any" input rhs to the output stream os . More... | |
Modified boost::any class, which is a container for a templated value.
Definition at line 86 of file Teuchos_any.hpp.
|
inline |
Empty constructor.
Definition at line 90 of file Teuchos_any.hpp.
|
inlineexplicit |
Templated constructor.
Definition at line 96 of file Teuchos_any.hpp.
|
inline |
Copy constructor.
Definition at line 101 of file Teuchos_any.hpp.
|
inline |
Destructor.
Definition at line 106 of file Teuchos_any.hpp.
Method for swapping the contents of two any classes.
Definition at line 112 of file Teuchos_any.hpp.
|
inline |
Copy the value rhs
Definition at line 120 of file Teuchos_any.hpp.
Copy the value held in rhs
Definition at line 127 of file Teuchos_any.hpp.
|
inline |
Return true if nothing is being stored.
Definition at line 134 of file Teuchos_any.hpp.
|
inline |
Return the type of value being stored.
Definition at line 140 of file Teuchos_any.hpp.
|
inline |
Return the name of the type.
Definition at line 146 of file Teuchos_any.hpp.
|
inline |
Return if two any objects are the same or not.
Definition at line 152 of file Teuchos_any.hpp.
|
inline |
Print this value to the output stream os
Definition at line 165 of file Teuchos_any.hpp.
|
related |
Used to extract the templated value held in Teuchos::any to a given value type.
Definition at line 265 of file Teuchos_any.hpp.
|
related |
Used to extract the const templated value held in Teuchos::any to a given const value type.
Definition at line 301 of file Teuchos_any.hpp.
|
related |
Converts the value in any
to a std::string.
Definition at line 309 of file Teuchos_any.hpp.
Returns true if two any objects have the same value.
Definition at line 319 of file Teuchos_any.hpp.
Returns true if two any objects do not have the same value.
Definition at line 327 of file Teuchos_any.hpp.
|
related |
Writes "any" input rhs
to the output stream os
.
Definition at line 335 of file Teuchos_any.hpp.