Aleph-w 3.0
A C++ Library for Data Structures and Algorithms
Loading...
Searching...
No Matches
Aleph::FenwickArithmetic Concept Reference

Arithmetic domain accepted by Fenwick specializations. More...

#include <tpl_fenwick_tree.H>

Concept definition

template<typename T>
std::is_arithmetic_v<T> &&
std::totally_ordered<T> &&
std::is_signed_v<T> &&
!std::same_as<T, bool>
Arithmetic domain accepted by Fenwick specializations.

Detailed Description

Arithmetic domain accepted by Fenwick specializations.

Signed, totally ordered arithmetic types excluding bool.

Definition at line 89 of file tpl_fenwick_tree.H.