xtd
0.2.0
Loading...
Searching...
No Matches
xtd.core
include
xtd
arithmeticable.hpp
Go to the documentation of this file.
1
4
#pragma once
5
#include "
addable.hpp
"
6
#include "
divisible.hpp
"
7
#include "
multipliable.hpp
"
8
#include "
subtractable.hpp
"
9
11
namespace
xtd
{
12
// Since Doxygen does not work properly with the C++ concept, the documentation for this concept is declared in xtd/arithmeticable_.hpp
13
template
<
typename
type_t>
14
concept
arithmeticable
=
15
xtd::addable<type_t>
&&
16
xtd::divisible<type_t>
&&
17
xtd::multipliable<type_t>
&&
18
xtd::subtractable<type_t>
;
19
}
addable.hpp
Contains xtd::addable concept.
xtd::addable
Definition
addable.hpp:12
xtd::arithmeticable
Definition
arithmeticable.hpp:14
xtd::divisible
Definition
divisible.hpp:12
xtd::multipliable
Definition
multipliable.hpp:12
xtd::subtractable
Definition
subtractable.hpp:12
divisible.hpp
Contains xtd::divisible concept.
multipliable.hpp
Contains xtd::multipliable concept.
xtd
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition
abstract_object.hpp:8
subtractable.hpp
Contains xtd::subtractable concept.
Generated on
for xtd by
Gammasoft
. All rights reserved.