3#ifndef TETL_FUNCTIONAL_LOGICAL_NOT_HPP
4#define TETL_FUNCTIONAL_LOGICAL_NOT_HPP
13template <
typename T =
void>
constexpr auto arg(complex< T > const &z) noexcept -> T
Definition arg.hpp:15
Definition adjacent_find.hpp:8
constexpr auto forward(remove_reference_t< T > ¶m) noexcept -> T &&
Forwards lvalues as either lvalues or as rvalues, depending on T. When t is a forwarding reference (a...
Definition forward.hpp:18
constexpr auto operator()(T &&arg) const noexcept(noexcept(!etl::forward< T >(arg))) -> decltype(!etl::forward< T >(arg))
Definition logical_not.hpp:23
void is_transparent
Definition logical_not.hpp:20
Function object for performing logical NOT (logical negation). Effectively calls operator!...
Definition logical_not.hpp:14
constexpr auto operator()(T const &arg) const -> bool
Definition logical_not.hpp:15