template<typename type_t>
struct xtd::integer_arithmeticable< type_t >
Represents the integer arithmeticable concept.
- Definition
template<typename type_t>
Definition arithmeticable.hpp:14
Definition integer_arithmeticable.hpp:12
Definition modable.hpp:12
- Header
#include <xtd/integer_arithmeticable>
- Namespace
- xtd
- Library
- xtd.core
- Examples
- The following code shows how to use xtd::integer_arithmeticable concept
#include <xtd/xtd>
auto print_is_integer_arithmeticable(auto value) noexcept {
}
auto main() -> int {
print_is_integer_arithmeticable(42);
print_is_integer_arithmeticable(
time_span {1, 2, 3});
print_is_integer_arithmeticable(version {1, 2, 3});
}
Represents a time interval.
Definition time_span.hpp:29
void println()
Writes the current line terminator to the standard output stream using the specified format informati...
Definition println.hpp:167
The documentation for this struct was generated from the following file: