mutable
A Database System for Research and Fast Prototyping
Loading...
Searching...
No Matches
m::same_signedness Concept Reference

Check whether types. More...

#include <concepts.hpp>

Concept definition

template<typename T, typename U>
concept m::same_signedness = (arithmetic<T> and arithmetic<U> and std::is_signed_v<T> == std::is_signed_v<U>) or
Check whether.
Definition: concepts.hpp:35
Check whether.
Definition: concepts.hpp:14
Check whether types.
Definition: concepts.hpp:56
and
Definition: enum_ops.hpp:12

Detailed Description

Check whether types.

Template Parameters
Tand
Uhave equal signedness, i.e. both unsigned or both signed.

Definition at line 56 of file concepts.hpp.