std::copyable_function::operator bool

Checks whether *this stores a callable target, i.e. is not empty.

# Declarations

explicit operator bool() const noexcept;

(since C++26)

# Return value

true if *this stores a callable target, false otherwise.

# Example

This section is incompleteReason: no example

# See also