-
Notifications
You must be signed in to change notification settings - Fork 0
c8_integer_operator_ltlt
Dave Hudson edited this page May 2, 2017
·
2 revisions
auto operator <<(unsigned int count) const -> integer;
Shifts this number (left hand side of the operator) left by count
(right hand side of the operator) bit positions, resulting in a new c8::integer
number.
A new integer equal to this number shifted left by count
bit positions.
-
std::bad_alloc
in the event of a memory allocation failure.