class Gsf::Input

Public Instance Methods

read(size=nil) click to toggle source
# File gsf/lib/gsf/input.rb, line 20
def read(size=nil)
  size ||= remaining
  bytes = read_raw(size)
  bytes.pack("C*")
end
Also aliased as: read_raw
read_raw(size=nil)
Alias for: read