Class: Integer
- Inherits:
-
Object
- Object
- Integer
- Defined in:
- lib/bitcoin.rb
Instance Method Summary collapse
- #itb ⇒ Object
-
#to_bits(length = nil) ⇒ Object
convert bit string.
- #to_even_length_hex ⇒ Object
Instance Method Details
#itb ⇒ Object
204 205 206 |
# File 'lib/bitcoin.rb', line 204 def itb to_even_length_hex.htb end |
#to_bits(length = nil) ⇒ Object
convert bit string
209 210 211 212 213 214 215 |
# File 'lib/bitcoin.rb', line 209 def to_bits(length = nil ) if length to_s(2).rjust(length, '0') else to_s(2) end end |
#to_even_length_hex ⇒ Object
199 200 201 202 |
# File 'lib/bitcoin.rb', line 199 def to_even_length_hex hex = to_s(16) hex.rjust((hex.length / 2.0).ceil * 2, '0') end |