9 template<concepts::Un
signedInteger T>
10 constexpr auto operator()(T x,
int s)
const -> T {
17 return (x << r) | (x >> (N - r));
19 return (x >> -r) | (x << (N + r));
24constexpr inline auto rotl = detail::RotlFunction {};
Definition bit_proxy_reference.h:5
constexpr auto rotl
Definition rotl.h:24
Definition any_storable.h:9
static constexpr int digits
Definition numeric_limits.h:14