class Integer

Public Instance Methods

bencode() click to toggle source

Bencodes the Integer object. Bencoded integers are represented as ixe, where x is the integer with an optional hyphen prepended, indicating negativity.

42.bencode   #=> "i42e"
-7.bencode   #=> "i-7e"
# File lib/bencode/core_ext/integer.rb, line 10
def bencode
  "i#{self}e"
end