![]() |
mutable
A Database System for Research and Fast Prototyping
|
A helper type to wrap some template type parameter such that it can safely be used to declare a class field or local variable. More...
#include <some.hpp>
Public Types | |
using | value_type = std::remove_reference_t< T > |
Public Member Functions | |
some (value_type &&value) | |
some ()=delete | |
some (const some &)=delete | |
some (some &&other) | |
some & | operator= (some other) |
some & | operator= (value_type &&value) |
Data Fields | |
value_type | value |
A helper type to wrap some template type parameter such that it can safely be used to declare a class field or local variable.
In particular, handles void
.
|
inlineexplicit |
Definition at line 20 of file some.hpp.
References m::some< T >::value.
|
inline |
value_type m::some< T >::value |
Definition at line 18 of file some.hpp.
Referenced by m::some< T >::some().