static constexpr std::size_t hd_chunk()

in fatal/type/impl/slice.h [331:334]


static constexpr std::size_t hd_chunk(std::size_t Size) {
  return Size >= 32 ? 32 : Size >= 16 ? 16 : Size >= 8 ? 8 : Size >= 4 ? 4
    : Size;
}