tmp/tmpnbwtmwls/{from.md → to.md}
RENAMED
|
@@ -169,11 +169,11 @@ size_t count() const noexcept;
|
|
| 169 |
```
|
| 170 |
|
| 171 |
*Returns:* A count of the number of bits set in `*this`.
|
| 172 |
|
| 173 |
``` cpp
|
| 174 |
-
constexpr size_t size() noexcept;
|
| 175 |
```
|
| 176 |
|
| 177 |
*Returns:* `N`.
|
| 178 |
|
| 179 |
``` cpp
|
|
@@ -230,11 +230,11 @@ bitset<N> operator>>(size_t pos) const noexcept;
|
|
| 230 |
```
|
| 231 |
|
| 232 |
*Returns:* `bitset<N>(*this) >>= pos`.
|
| 233 |
|
| 234 |
``` cpp
|
| 235 |
-
constexpr bool operator[](size_t pos);
|
| 236 |
```
|
| 237 |
|
| 238 |
*Requires:* `pos` shall be valid.
|
| 239 |
|
| 240 |
*Returns:* `true` if the bit at position `pos` in `*this` has the value
|
|
|
|
| 169 |
```
|
| 170 |
|
| 171 |
*Returns:* A count of the number of bits set in `*this`.
|
| 172 |
|
| 173 |
``` cpp
|
| 174 |
+
constexpr size_t size() const noexcept;
|
| 175 |
```
|
| 176 |
|
| 177 |
*Returns:* `N`.
|
| 178 |
|
| 179 |
``` cpp
|
|
|
|
| 230 |
```
|
| 231 |
|
| 232 |
*Returns:* `bitset<N>(*this) >>= pos`.
|
| 233 |
|
| 234 |
``` cpp
|
| 235 |
+
constexpr bool operator[](size_t pos) const;
|
| 236 |
```
|
| 237 |
|
| 238 |
*Requires:* `pos` shall be valid.
|
| 239 |
|
| 240 |
*Returns:* `true` if the bit at position `pos` in `*this` has the value
|