xtd
1.0.0
Toggle main menu visibility
Loading...
Searching...
No Matches
xtd.core
include
xtd
post_incrementable.hpp
Go to the documentation of this file.
1
4
#pragma once
5
#include "
raw_type.hpp
"
6
#include <concepts>
7
9
namespace
xtd
{
10
// Since Doxygen does not work properly with the C++ concept, the documentation for this concept is declared in xtd/post_incrementable_.hpp
11
template
<
typename
type_t>
12
concept
post_incrementable
=
requires
(
xtd::raw_type<type_t>
&
a
) {
13
{
a
++} -> std::same_as<xtd::raw_type<type_t>>;
14
};
15
}
xtd::post_incrementable
Definition
post_incrementable.hpp:12
xtd::raw_type
std::remove_cvref_t< value_t > raw_type
Represents a raw type alias equivalent to std::remove_cvref_t<value_t>.
Definition
raw_type.hpp:25
xtd::console_key::a
@ a
The A key.
Definition
console_key.hpp:88
xtd
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition
abstract_object.hpp:8
raw_type.hpp
Contains xtd::raw_type alias.
Generated on
for xtd by
Gammasoft
. All rights reserved.