31 Pimpl(T* implementation)
noexcept;
48 T const*
get() const noexcept;
64 T* operator->() noexcept;
71 T const* operator->() const noexcept;
78 T& operator*() noexcept;
85 T const& operator*() const noexcept;
88 #include "Refureku/Misc/Pimpl.inl"
void uncheckedSet(T *impl) noexcept
Set a new implementation without checking the state of the previous one. WARNING: If a valid implemen...
T * get() noexcept
Retrieve a pointer to the underlying object.
Definition: Allocator.h:16