QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
Loading...
Searching...
No Matches
quickcpplib::_xxx::offset_ptr::atomic_offset_ptr< T > Class Template Reference

#include "offset_ptr.hpp"

Public Types

using pointer = T *
 The pointer type.
 
using element_type = T
 The pointed to type.
 

Public Member Functions

constexpr atomic_offset_ptr (std::memory_order w=std::memory_order_seq_cst) noexcept
 Construct a null pointer.
 
constexpr atomic_offset_ptr (std::nullptr_t, std::memory_order w=std::memory_order_seq_cst) noexcept
 Implicitly construct a null pointer.
 
constexpr atomic_offset_ptr (const atomic_offset_ptr &o, std::memory_order w=std::memory_order_seq_cst, std::memory_order r=std::memory_order_seq_cst) noexcept
 Copy constructor.
 
constexpr atomic_offset_ptr (atomic_offset_ptr &&o, std::memory_order w=std::memory_order_seq_cst, std::memory_order r=std::memory_order_seq_cst) noexcept
 Move constructor.
 
constexpr atomic_offset_ptroperator= (const atomic_offset_ptr &o) noexcept
 Copy assignment.
 
constexpr atomic_offset_ptroperator= (atomic_offset_ptr &&o) noexcept
 Move assignment.
 
 ~atomic_offset_ptr ()=default
 
constexpr atomic_offset_ptr (pointer v, std::memory_order w=std::memory_order_seq_cst)
 Implicitly construct.
 
constexpr pointer get (std::memory_order r=std::memory_order_seq_cst) const noexcept
 Get.
 
constexpr void set (pointer v, std::memory_order w=std::memory_order_seq_cst) noexcept
 Set.
 

Member Typedef Documentation

◆ pointer

template<class T >
using quickcpplib::_xxx::offset_ptr::atomic_offset_ptr< T >::pointer = T *

The pointer type.

◆ element_type

template<class T >
using quickcpplib::_xxx::offset_ptr::atomic_offset_ptr< T >::element_type = T

The pointed to type.

Constructor & Destructor Documentation

◆ atomic_offset_ptr() [1/5]

template<class T >
constexpr quickcpplib::_xxx::offset_ptr::atomic_offset_ptr< T >::atomic_offset_ptr ( std::memory_order  w = std::memory_order_seq_cst)
inlineconstexprnoexcept

Construct a null pointer.

177{ _set(nullptr, w); }

◆ atomic_offset_ptr() [2/5]

template<class T >
constexpr quickcpplib::_xxx::offset_ptr::atomic_offset_ptr< T >::atomic_offset_ptr ( std::nullptr_t  ,
std::memory_order  w = std::memory_order_seq_cst 
)
inlineconstexprnoexcept

Implicitly construct a null pointer.

179{ _set(nullptr, w); }

◆ atomic_offset_ptr() [3/5]

template<class T >
constexpr quickcpplib::_xxx::offset_ptr::atomic_offset_ptr< T >::atomic_offset_ptr ( const atomic_offset_ptr< T > &  o,
std::memory_order  w = std::memory_order_seq_cst,
std::memory_order  r = std::memory_order_seq_cst 
)
inlineconstexprnoexcept

Copy constructor.

181{ _set(o._get(r), w); }

◆ atomic_offset_ptr() [4/5]

template<class T >
constexpr quickcpplib::_xxx::offset_ptr::atomic_offset_ptr< T >::atomic_offset_ptr ( atomic_offset_ptr< T > &&  o,
std::memory_order  w = std::memory_order_seq_cst,
std::memory_order  r = std::memory_order_seq_cst 
)
inlineconstexprnoexcept

Move constructor.

183{ _set(o._get(r, w)); }

◆ ~atomic_offset_ptr()

◆ atomic_offset_ptr() [5/5]

template<class T >
constexpr quickcpplib::_xxx::offset_ptr::atomic_offset_ptr< T >::atomic_offset_ptr ( pointer  v,
std::memory_order  w = std::memory_order_seq_cst 
)
inlineconstexpr

Implicitly construct.

199{ _set(v, w); }

Member Function Documentation

◆ operator=() [1/2]

template<class T >
constexpr atomic_offset_ptr & quickcpplib::_xxx::offset_ptr::atomic_offset_ptr< T >::operator= ( const atomic_offset_ptr< T > &  o)
inlineconstexprnoexcept

Copy assignment.

186 {
187 _set(o._get(std::memory_order_seq_cst), std::memory_order_seq_cst);
188 return *this;
189 }

◆ operator=() [2/2]

template<class T >
constexpr atomic_offset_ptr & quickcpplib::_xxx::offset_ptr::atomic_offset_ptr< T >::operator= ( atomic_offset_ptr< T > &&  o)
inlineconstexprnoexcept

Move assignment.

192 {
193 _set(o._get(std::memory_order_seq_cst), std::memory_order_seq_cst);
194 return *this;
195 }

◆ get()

template<class T >
constexpr pointer quickcpplib::_xxx::offset_ptr::atomic_offset_ptr< T >::get ( std::memory_order  r = std::memory_order_seq_cst) const
inlineconstexprnoexcept

Get.

202{ return _get(r); }

◆ set()

template<class T >
constexpr void quickcpplib::_xxx::offset_ptr::atomic_offset_ptr< T >::set ( pointer  v,
std::memory_order  w = std::memory_order_seq_cst 
)
inlineconstexprnoexcept

Set.

204{ _set(v, w); }

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