xtd 0.2.0
Loading...
Searching...
No Matches
logical.hpp
Go to the documentation of this file.
1
4#pragma once
5#include "boolean.hpp"
6#include "raw_type.hpp"
7#include <concepts>
8
10namespace xtd {
26 template<class type_t>
27 concept logical =
28 std::same_as<xtd::raw_type<type_t>, xtd::boolean>;
29}
Contains xtd::boolean type.
Represent a logical concept.
Definition logical.hpp:27
bool boolean
Represents a boolean.
Definition boolean.hpp:23
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
Contains xtd::raw_type alias.