std::experimental::propagate_const<T>::operator bool
Min standard notice:
Checks whether the wrapped pointer-like object, t_, is null.
# Declarations
constexpr explicit operator bool() const;
(library fundamentals TS v2)
# Return value
true if the wrapped object is not null, otherwise false. Equivalent to (bool)t_.
# Example
This section is incompleteReason: no example