Module: CafInfo::CafFileMethods
- Defined in:
- lib/caf/extension_modules.rb
Overview
:nodoc:
Instance Method Summary collapse
Instance Method Details
#get32bits ⇒ Object
33 34 35 |
# File 'lib/caf/extension_modules.rb', line 33 def get32bits (getbyte << 24) + (getbyte << 16) + (getbyte << 8) + getbyte end |
#get_syncsafe ⇒ Object
37 38 39 |
# File 'lib/caf/extension_modules.rb', line 37 def get_syncsafe (getbyte << 21) + (getbyte << 14) + (getbyte << 7) + getbyte end |
#getbyte ⇒ Object
28 29 30 |
# File 'lib/caf/extension_modules.rb', line 28 def getbyte getc end |