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
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
On Sat, Jan 1, 2011 at 10:43 AM, Kedar M.
[email protected] wrote:
Is there a Ruby standard library method to get an Integer’s two’s
complement representation (on the given machine) of an Integer?
try combining fixnum#size and (s)printf/format using %b
happy new year and best regards -botp
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs