12 lines
195 B
C++
12 lines
195 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace cpp14 {
|
|
|
|
[[nodiscard]] auto million() -> int;
|
|
[[nodiscard]] auto mask() -> std::uint32_t;
|
|
[[nodiscard]] auto bits_set() -> int;
|
|
|
|
} // namespace cpp14
|