std::experimental::propagate_const<T>::operator bool

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

# See also