AnySet Documentation
|
A std::any
-like type that serves as the value_type
for AnySet instances.
AnyValue instances are always dynamically-allocated and are typically owned by an AnySet instance. AnyValue has no user-visible constructors and is neither copy nor move-assignable.
AnyValue instances can be spliced into and extracted from AnySet instances whose HashFn
and KeyEqual
types are the same as HashFn
and Compare
respectively.
Following the conventions of std::any
, the value contained in a particular AnyValue instance can be obtained using special 'cast' functions. The cast functions provided for AnyValue are exact_cast(), polymorphic_cast(), and unsafe_cast(). Additionally, non-cast-style accessor and query functions is(), as(), get(), get_default_ref(), get_default_val(), and try_as() are provided as well.
#include <AnyNode.h>
Public Types | |
using | self_type = AnyValue< HashFn, Compare > |
using | hasher = HashFn |
using | key_equal = Compare |
Public Member Functions | |
AnyValue (const AnyValue &)=delete | |
AnyValue (AnyValue &&)=delete | |
virtual const std::type_info & | typeinfo () const =0 |
Get a reference to a std::type_info object that indicates the type of the contained object. More... | |
Public Attributes | |
const std::size_t | hash |
The hash code obtained by invoking an instance of HashFn on the contained object. More... | |
Protected Member Functions | |
AnyValue (std::size_t hash_v) | |
virtual bool | compare_to (const AnyValue &other, Compare comp) const =0 |
virtual bool | equals (const AnyValue &other) const =0 |
virtual bool | not_equals (const AnyValue &other) const =0 |
virtual void | write (std::ostream &os) const =0 |
virtual std::unique_ptr< self_type > | clone () const =0 |
Friends | |
template<class , class , class > | |
struct | AnySet |
struct | detail::AnyList< HashFn, Compare > |
std::ostream & | operator<< (std::ostream &os, const AnyValue &any_v) |
Write the contained object to the given std::ostream using the stream insertion << operator. More... | |
Comparison Operations | |
template<class T > | |
bool | operator== (const AnyValue &left, const T &right) |
Query whether the contained object in left is of type T and equal to right . | |
template<class T > | |
bool | operator== (const T &left, const AnyValue &right) |
Query whether the contained object in right is of type T and equal to left . | |
template<class T > | |
bool | operator!= (const T &left, const AnyValue &right) |
Query whether the contained object in right is not of type T or not equal to left . | |
template<class T > | |
bool | operator!= (const AnyValue &left, const T &right) |
Query whether the contained object in left is not of type T or not equal to right . | |
bool | operator== (const AnyValue &left, const AnyValue &right) |
Query whether the contained objects in left and right are of the same equality-comparable type, and subsequently whether the contained, same-type objects compare equal using operator==. More... | |
bool | operator!= (const AnyValue &left, const AnyValue &right) |
Query whether the contained objects in left and right are of different types, or whether the contained same-type objects compare not-equal using operator!=. More... | |
bool | compare (const AnyValue &left, const AnyValue &right, Compare comp) |
Query whether the contained objects in left and right are of the same type, and subsequently whether the contained same-type objects compare equal using the provided instance of the Compare comparison function object. More... | |
template<class T , class Comp = Compare, class = std::enable_if_t<not std::is_same_v<T, self_type>>> | |
bool | compare (const T &left, const AnyValue &right, Comp comp) |
Query whether the contained object in right is of type T and subsequently whether the contained object compares equal to left using the provided instance of the Comp comparison function object. More... | |
template<class T , class Comp = Compare, class = std::enable_if_t<not std::is_same_v<T, self_type>>> | |
bool | compare (const AnyValue &left, const T &right, Comp comp) |
Query whether the contained object in left is of type T and subsequently whether the contained object compares equal to right using the provided instance of the Comp comparison function object. More... | |
Related Functions | |
(Note that these are not member functions.) | |
Queries | |
template<class T , class H , class C > | |
bool | is (const AnyValue< H, C > &any_v) |
Check if any_v contains an object of type T. More... | |
Maker/Factory Functions | |
Note that these functions are intended primarilly for internal use. | |
template<class T , class H , class C , class ... Args> | |
std::unique_ptr< AnyValue< H, C > > | make_any_value (std::size_t hash_value, Args &&... args) |
Constructs a std::unique_ptr<AnyValue<H, C>> suitable for splicing into an AnySet instance. More... | |
template<class T , class H , class C , class ... Args> | |
std::unique_ptr< AnyValue< H, C > > | make_any_value (H hasher, Args &&... args) |
Constructs a std::unique_ptr<AnyValue<H, C>> suitable for splicing into an AnySet< C> instance. More... | |
Casts | |
template<class To , class H , class C > | |
To | polymorphic_cast (const AnyValue< H, C > &any_v) |
Access the contained object through a reference to dynamic type To . More... | |
template<class To , class H , class C > | |
To | polymorphic_cast (const AnyValue< H, C > *any_v) |
Access the contained object through a pointer to dynamic type To . More... | |
template<class To , class H , class C > | |
To | exact_cast (const AnyValue< H, C > &any_v) |
Access the contained object. More... | |
template<class To , class H , class C > | |
To | exact_cast (const AnyValue< H, C > *any_v) |
Access the contained object. More... | |
template<class To , class H , class C > | |
To | unsafe_cast (const AnyValue< H, C > &any_v) |
Access the contained object without dynamic type checking. More... | |
Higher-Level Accessors | |
template<class T , class H , class C > | |
const T * | try_as (const AnyValue< H, C > &any_v) |
Get a pointer to the contained object of type T. If the contained object is not an instance of type T, returns nullptr. More... | |
template<class T , class H , class C > | |
const T & | as (const AnyValue< H, C > &self) |
Get a reference to the contained object of type T. If the contained object is not an instance of type T, throws a std::bad_cast. More... | |
template<class T , class H , class C > | |
const T & | get (const AnyValue< H, C > &any_v) |
template<class T , class H , class C , class DefaultRef > | |
const std::decay_t< T > & | get_default_ref (const AnyValue< H, C > &any_v, DefaultRef &&default_ref) |
Get the contained value in any_v through a reference to const T . More... | |
template<class T , class H , class C , class DefaultVal > | |
T | get_default_val (const AnyValue< H, C > &any_v, DefaultVal &&default_val) |
Get a copy of the contained value in any_v of type T . More... | |
|
pure virtual |
Get a reference to a std::type_info object that indicates the type of the contained object.
Implemented in te::detail::TypedValue< Value, HashFn, Compare >.
|
related |
Get a reference to the contained object of type T. If the contained object is not an instance of type T, throws a std::bad_cast.
This function works by attempting an exact_cast() followed by, if the exact_cast() failed, a polymorphic_cast(). The polymorphic_cast() is only attempted if T
is a non-final class type.
T | - The type of the contained value, absent of reference (&) or const/volatile qualifiers. |
any_v | - The AnyValue instance whose contained object is to be accessed. |
const T&
to the contained object.std::bad_cast |
|
friend |
Query whether the contained objects in left
and right
are of the same type, and subsequently whether the contained same-type objects compare equal using the provided instance of the Compare
comparison function object.
left | - An instance of te::AnyValue< Compare> . |
right | - An instance of te::AnyValue< Compare> . |
comp | - The instance of Compare to use for comparing the contained objects. |
comp
is invoked with the contained objects.
|
friend |
Query whether the contained object in right
is of type T
and subsequently whether the contained object compares equal to left
using the provided instance of the Comp
comparison function object.
left | - An instance of type T . |
right | - An instance of te::AnyValue< Compare> . |
comp | - An instance of an arbitrary comparison function type Comp to use for comparing the contained objects. |
comp
is invoked with the contained objects.
|
friend |
Query whether the contained object in left
is of type T
and subsequently whether the contained object compares equal to right
using the provided instance of the Comp
comparison function object.
left | - An instance of te::AnyValue< Compare> . |
right | - An instance of type T . |
comp | - An instance of an arbitrary comparison function type Comp to use for comparing the contained objects. |
comp
is invoked with the contained objects.
|
related |
Access the contained object.
If the type of contained object is not the same as the requested type (after stripping off references and cv qualifiers, i.e. std::decay), throws a std::bad_cast
.
To | - The type to access the contained object as. May be a reference or value type. |
any_v | - The AnyValue instance whose contained object is to be accessed. |
To
is a non-reference type) the contained object.std::bad_cast |
|
related |
Access the contained object.
If the type of contained object is not the same as the requested type (after stripping off top-level pointer and then cv qualifiers), returns null.
To | - The type to access the contained object as. Must be a pointer to the expected type of the contained object. |
any_v | - The AnyValue instance whose contained object is to be accessed. |
|
related |
Equivalent to as().
|
related |
Get the contained value in any_v
through a reference to const T
.
If the value contained in any_v
is of type T
, as determined by calling try_as() (try_as<T>(any_v)
), returns the contained value by 'reference to const T
, otherwise the provided "default" reference default_ref
is returned.
default_ref
is not an lvalue reference to T
, the call fails to compile (via static_assert). This is to prevent silently returning a dangling reference to T
. See this talk for further details and justification.T | - The type of the contained value, absent of reference (&) or const/volatile qualifiers. |
any_v | - The AnyValue instance whose contained object is being accessed. |
default_ref | - An lvalue reference to an object of type T which will be returned if any_v does not contain an object of type T . |
T
contained in any_v
, or default_ref
if any_v
does not contain an object of type T
.
|
related |
Get a copy of the contained value in any_v
of type T
.
If the value contained in any_v
is of type T
, as determined by calling try_as() (try_as<T>(any_v)
), returns a copy of the contained value, otherwise an object of type T
is constructed from the provided "default" value, default_val
, and returned.
default_val
, may be a rvalue or an instance of a type other than T
, so long as an object of type T
can be constructed from the provided value.T | - The type to access, absent of reference (&) or const/volatile qualifiers. |
any_v | - The AnyValue instance whose contained object is being accessed. |
default_ref | - The default value to constuct an instance of T from in the case that any_v does not contain an object of type T . |
any_v
contains an object of type T
, returns a copy of the constained object, otherwise, returns an instance of type T
constructed from default_val
.
|
related |
Check if any_v
contains an object of type T.
T
must match the contained type exactly; is() returns false, even if T is an accessible base of the type of the contained object.
T | - The type of the contained value, absent of reference (&) or const/volatile qualifiers. |
any_v | - The AnyValue instance whose contained type is to be queried. |
|
related |
Constructs a std::unique_ptr<AnyValue<H, C>> suitable for splicing into an AnySet instance.
T | - The type of the contained value. |
H | - The type of the hash function object used by AnySet instances that the returned AnyValue instance can be spliced into. |
H | - The type of the comparison (KeyEqual) function object used by AnySet instances that the returned AnyValue instance can be spliced into. |
hash_value | - The resultant hash code obtained from hashing the to-be-constructed T instance. |
args | - arguments to forward to T's constructor. |
hash_value
is a "trust me" argument. Only call this overload if you are absolutely sure of what the hash code of the constructed object will be. Use of this overload is appropriate, for example, when move-constructing a long std::string whose hash has already been computed.T
's constructor, by calling hasher
with the constructed value of T
, or by std::make_unique();
|
related |
Constructs a std::unique_ptr<AnyValue<H, C>> suitable for splicing into an AnySet<
H
,C>
instance.
T | - The type of the contained value. |
H | - The type of the hash function object used by AnySet instances that the returned AnyValue instance can be spliced into. |
H | - The type of the comparison (KeyEqual) function object used by AnySet instances that the returned AnyValue instance can be spliced into. |
hasher | - The instance of H to use to compute the hash of contained T object after it is constructed in the AnyValue. |
args | - Arguments to forward to T's constructor. |
T
's constructor, by calling hasher
with the constructed value of T
, or by std::make_unique();
|
friend |
Query whether the contained objects in left
and right
are of different types, or whether the contained same-type objects compare not-equal using operator!=.
true
. This is the case even if the contained objects are of the same, empty type.
|
friend |
Write the contained object to the given std::ostream
using the stream insertion << operator.
operator<<
(std::ostream
, const
T&
) overload), writes a string of the form "AnyValue(typeid.name='<typeid(T).name()>', hash=<hash code>)".
|
friend |
Query whether the contained objects in left
and right
are of the same equality-comparable type, and subsequently whether the contained, same-type objects compare equal using operator==.
false
. This is the case even if the contained objects are of the same, empty type.
|
related |
Access the contained object through a reference to dynamic type To
.
Unlike exact_cast()
or unsafe_cast()
, polymorphic_cast()
can access the AnyValue
instance's contained object through a reference to a base type of the contained object. For example, an AnyValue instance which contains an object of type std::runtime_error
could be polymorphic_cast()'d to const std::exception&
.
If the contained object is of non-class type, throws a std::bad_cast
.
If the contained object is an instance of a final class type, throws a std::bad_cast
, even if the contained object is an instance of To
.
If To
is a reference to non-class or final class type, the cast fails to compile.
To | - The type to cast to. Should take the form const T& . |
any_v | - The AnyValue instance whose contained object is being accessed. |
std::bad_cast |
|
related |
Access the contained object through a pointer to dynamic type To
.
Unlike exact_cast()
or unsafe_cast()
, polymorphic_cast()
can access the AnyValue
instance's contained object through a (possibly polymorphic) pointer to a base type of the contained object. For example, an AnyValue instance which contains an object of type std::runtime_error
could be polymorphic_cast()'d to const std::exception*
.
If the contained object is of non-class type, returns nullptr
.
If the contained object is an instance of a final class type, returns nullptr
, even if the contained object is an instance of To
.
If To
is a pointer to non-class or final class type, the cast fails to compile.
To | - The type to cast to. Should take the form const T* . |
any_v | - The AnyValue instance whose contained object is being accessed. |
|
related |
Get a pointer to the contained object of type T. If the contained object is not an instance of type T, returns nullptr.
This function works by attempting to return te::exact_cast<const T*>(&self)
followed by a te::polymorphic_cast<const T*>(&self)
if the exact_cast() failed. The polymorphic_cast() is only attempted if T
is a non-final class type.
T | - The type of the contained value, absent of reference (&) or const/volatile qualifiers. |
any_v | - The AnyValue instance whose contained object is to be accessed. |
const T*
to the contained object if the contained object has type T
, otherwise null.
|
related |
Access the contained object without dynamic type checking.
If the type of contained object is not the same as the requested type (after stripping off top-level reference and then cv qualifiers, i.e. std::decay), then the behavior is undefined.
To | - The type to access the contained object as. Must be the type of the contained object or const reference thereto. |
any_v | - The AnyValue instance whose contained object is to be accessed. |
To
is a reference type, or a copy if To
is a non-reference typeconst std::size_t te::AnyValue< HashFn, Compare >::hash |
The hash code obtained by invoking an instance of HashFn
on the contained object.
This member data member is provided primarilly so that lookup in an AnySet instance can "fail fast". Mismatched hash
values can indicate object inequality and elide the need to access the contained object, which requires virtual dispatch.