C(++)ECCO
C++ Error Control COding: a header-only library for ECC simulations and experiments, modeling complete coding systems across arbitrary finite fields and complex inter-field relationships - Christian Senger <senger@inue.uni-stuttgart.de>
Loading...
Searching...
No Matches
CECCO::SignedIntType Concept Reference

Standard signed integers or InfInt for arbitrary precision. More...

#include <field_concepts_traits.hpp>

Concept definition

template<typename T>
concept SignedIntType = (std::is_integral_v<T> && std::is_signed_v<T>) || std::is_same_v<T, InfInt>
Standard signed integers or InfInt for arbitrary precision.

Detailed Description

Standard signed integers or InfInt for arbitrary precision.

Template Parameters
TCandidate type

Satisfied by any type with std::is_integral_v<T> && std::is_signed_v<T> (i.e. int, long, long long, …) and by InfInt. Used by CECCO::Rationals so callers can trade speed for unbounded precision in numerator and denominator.

Definition at line 166 of file field_concepts_traits.hpp.