зеркало из https://github.com/microsoft/GSL.git
Add documentation for to_integer(byte) (#1144)
Co-authored-by: Werner Henze <w.henze@avm.de>
This commit is contained in:
Родитель
2e0d1ba48c
Коммит
b39e7e4b09
|
@ -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 <class IntegerType, class = std::enable_if_t<std::is_integral<IntegerType>::value>>
|
||||
constexpr IntegerType to_integer(byte b) noexcept;
|
||||
```
|
||||
|
||||
Convert the given `byte` value to an integral type.
|
||||
|
||||
```cpp
|
||||
template <typename T>
|
||||
constexpr byte to_byte(T t) noexcept;
|
||||
|
|
Загрузка…
Ссылка в новой задаче