diff --git a/docs/headers.md b/docs/headers.md index ae1c3d66..11dd0cdf 100644 --- a/docs/headers.md +++ b/docs/headers.md @@ -133,6 +133,13 @@ constexpr byte operator~(byte b) noexcept; Bitwise negation of a `byte`. Flips all bits. Zeroes become ones, ones become zeroes. +```cpp +template ::value>> +constexpr IntegerType to_integer(byte b) noexcept; +``` + +Convert the given `byte` value to an integral type. + ```cpp template constexpr byte to_byte(T t) noexcept;