mal-math
C++20 mathematics library.
All Classes Namespaces Files Functions Variables Typedefs Concepts
mal_math::_detail::primitive_reference_wrapper< T > Class Template Reference

Reference wrapper for primitives which does not allow rebinding after instantiation. More...

#include "math-common.hpp"

Collaboration diagram for mal_math::_detail::primitive_reference_wrapper< T >:
[legend]

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.
 

Detailed Description

template<Primitive T>
class mal_math::_detail::primitive_reference_wrapper< T >

Reference wrapper for primitives which does not allow rebinding after instantiation.

Definition at line 78 of file math-common.hpp.

Member Typedef Documentation

◆ type

template<Primitive T>
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.

Constructor & Destructor Documentation

◆ primitive_reference_wrapper()

template<Primitive T>
mal_math::_detail::primitive_reference_wrapper< T >::primitive_reference_wrapper ( T & ref)
inlineexplicitconstexpr

Constructor that sets the internal pointer to the given reference.

Definition at line 84 of file math-common.hpp.

Member Function Documentation

◆ operator T&()

template<Primitive T>
mal_math::_detail::primitive_reference_wrapper< T >::operator T& ( ) const
inlineconstexprnoexcept

Conversion operator to get the reference to the pointed type.

Definition at line 93 of file math-common.hpp.

◆ operator()()

template<Primitive T>
template<class... Types>
auto mal_math::_detail::primitive_reference_wrapper< T >::operator() ( Types &&... args) const -> decltype(std::invoke(*ptr_, static_cast<Types &&>(args)...))
inlineconstexprnoexcept

Definition at line 130 of file math-common.hpp.

◆ operator=() [1/4]

template<Primitive T>
template<Primitive U>
requires (!std::is_const_v<T>)
primitive_reference_wrapper< T > & mal_math::_detail::primitive_reference_wrapper< T >::operator= ( primitive_reference_wrapper< U > && v)
inlineconstexpr

Definition at line 118 of file math-common.hpp.

◆ operator=() [2/4]

template<Primitive T>
template<Primitive U>
requires (!std::is_const_v<T>)
primitive_reference_wrapper< T > & mal_math::_detail::primitive_reference_wrapper< T >::operator= ( primitive_reference_wrapper< U > const & v)
inlineconstexpr

Definition at line 112 of file math-common.hpp.

◆ operator=() [3/4]

template<Primitive T>
template<Primitive U>
requires (!std::is_const_v<T>)
primitive_reference_wrapper< T > & mal_math::_detail::primitive_reference_wrapper< T >::operator= ( U && v)
inlineconstexpr

Definition at line 105 of file math-common.hpp.

◆ operator=() [4/4]

template<Primitive T>
template<Primitive U>
requires (!std::is_const_v<T>)
primitive_reference_wrapper< T > & mal_math::_detail::primitive_reference_wrapper< T >::operator= ( U const & v)
inlineconstexpr

Definition at line 99 of file math-common.hpp.

◆ set_ptr()

template<Primitive T>
void mal_math::_detail::primitive_reference_wrapper< T >::set_ptr ( T & ref)
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.

Member Data Documentation

◆ ptr_

template<Primitive T>
T* mal_math::_detail::primitive_reference_wrapper< T >::ptr_ {}
private

Pointer to the wrapped primitive.

Definition at line 126 of file math-common.hpp.


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