mal-math
C++20 mathematics library.
|
Reference wrapper for primitives which does not allow rebinding after instantiation. More...
#include "math-common.hpp"
Public Types | |
using | type = T |
Alias for the type of the wrapped primitive. | |
Public Member Functions | |
constexpr | primitive_reference_wrapper (T &ref) |
Constructor that sets the internal pointer to the given reference. | |
constexpr void | set_ptr (T &ref) noexcept |
Method to set the internal pointer (not recommended for common use due to the nature of the class) | |
constexpr | operator T& () const noexcept |
Conversion operator to get the reference to the pointed type. | |
template<Primitive U> requires (!std::is_const_v<T>) | |
constexpr primitive_reference_wrapper< T > & | operator= (U const &v) |
template<Primitive U> requires (!std::is_const_v<T>) | |
constexpr primitive_reference_wrapper< T > & | operator= (U &&v) |
template<Primitive U> requires (!std::is_const_v<T>) | |
constexpr primitive_reference_wrapper< T > & | operator= (primitive_reference_wrapper< U > const &v) |
template<Primitive U> requires (!std::is_const_v<T>) | |
constexpr primitive_reference_wrapper< T > & | operator= (primitive_reference_wrapper< U > &&v) |
template<class... Types> | |
constexpr auto | operator() (Types &&...args) const noexcept(noexcept(std::invoke(*ptr_, static_cast< Types && >(args)...))) -> decltype(std::invoke(*ptr_, static_cast< Types && >(args)...)) |
Private Attributes | |
T * | ptr_ {} |
Pointer to the wrapped primitive. | |
Reference wrapper for primitives which does not allow rebinding after instantiation.
Definition at line 78 of file math-common.hpp.
using mal_math::_detail::primitive_reference_wrapper< T >::type = T |
Alias for the type of the wrapped primitive.
Definition at line 82 of file math-common.hpp.
|
inlineexplicitconstexpr |
Constructor that sets the internal pointer to the given reference.
Definition at line 84 of file math-common.hpp.
|
inlineconstexprnoexcept |
Conversion operator to get the reference to the pointed type.
Definition at line 93 of file math-common.hpp.
|
inlineconstexprnoexcept |
Definition at line 130 of file math-common.hpp.
|
inlineconstexpr |
Definition at line 118 of file math-common.hpp.
|
inlineconstexpr |
Definition at line 112 of file math-common.hpp.
|
inlineconstexpr |
Definition at line 105 of file math-common.hpp.
|
inlineconstexpr |
Definition at line 99 of file math-common.hpp.
|
inlineconstexprnoexcept |
Method to set the internal pointer (not recommended for common use due to the nature of the class)
Definition at line 87 of file math-common.hpp.
|
private |
Pointer to the wrapped primitive.
Definition at line 126 of file math-common.hpp.