Is there a Ruby standard library method to get an Integer's two's
complement representation (on the given machine) of an Integer?
to_s(2) does not give the two's complement representation of a negative
integer.
Thanks in advance!
-Kedar
···
--
Posted via http://www.ruby-forum.com/.
botp1
(botp)
2
try combining fixnum#size and (s)printf/format using %b
happy new year and best regards -botp
···
On Sat, Jan 1, 2011 at 10:43 AM, Kedar Mhaswade <kedar.mhaswade@gmail.com> wrote:
Is there a Ruby standard library method to get an Integer's two's
complement representation (on the given machine) of an Integer?