template<typename value_t>
struct xtd::expressions::logical_not_expression< value_t >
The xtd::expressions::logical_not_expression is the not expression.
- Namespace
- xtd::expressions
- Header
#include <xtd/expressions/logical_not_expression>
- Library
- xtd.core
- Examples
- The following example shows how to use xtd::expressions::logical_not_expression.
#include <xtd/xtd>
auto main() -> int {
println(
"not1 result => {}", not1(
true));
println(
"not1 result => {}", not1(
false));
}
constexpr auto _
The xtd::expressions::_ placeholder instance is used by expression that have only one argument.
Definition args.hpp:66
void println()
Writes the current line terminator to the standard output stream using the specified format informati...
Definition println.hpp:167