Template Struct unify_ints¶
Defined in File sharded_map.hpp
Struct Documentation¶
-
template<std::integral L, std::integral R>
struct unify_ints¶ For two integer types, gets the smallest integer type that fits both types.
If any of the two types are signed, then the output type will also be signed. Otherwise it is unsigned.
The output type is available through the public
typetype definition.- Template Parameters:
L – An integer type
R – Another integer type