std::experimental::propagate_const<T>::operator element_type*, std::experimental::propagate_const<T>::operator const element_type*
Min standard notice:
Provides implicit conversions to element_type* and const element_type*.
# Declarations
constexpr operator element_type*();
(library fundamentals TS v2)
constexpr operator const element_type*() const;
(library fundamentals TS v2)
# Return value
A pointer to the object pointed to by the wrapped pointer-like object, i.e., this->get().
# Example
This section is incompleteReason: no example