xtd 0.2.0
Loading...
Searching...
No Matches
expression_operand.hpp
Go to the documentation of this file.
1
4#pragma once
5#include "expression.hpp"
6#include <concepts>
7#include <type_traits>
8
10namespace xtd {
12 namespace expressions {
23 //template <typename left_t, typename right_t>
24 //concept expression_operand =
25 //expression<left_t> || expression<right_t>;
26 template <typename type_t>
28 std::is_base_of_v<expression, std::decay_t<type_t>>;
29 }
30}
The xtd::expressions::expression_operand object is expression operand concept.
Definition expression_operand.hpp:27
Contains xtd::expressions::expression struct.
The xtd::expressions namespace provides a lightweight, composable expression template framework for b...
Definition add_expression.hpp:14
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8