Left shift all bits, fill 0 to the hollow
| 217 | |
| 218 | /// Left shift all bits, fill 0 to the hollow |
| 219 | void LeftShift(size_t shift) |
| 220 | { |
| 221 | if (shift != 0) |
| 222 | DoLeftShift(Words(), Size(), shift); |
| 223 | } |
| 224 | |
| 225 | /// Right shift all bits, fill 0 to the hollow |
| 226 | void RightShift(size_t shift) |