Method: LZMA::Utils::CRC32#initialize
- Defined in:
- lib/extlzma2/utils.rb
#initialize(state = 0) ⇒ CRC32
Returns a new instance of CRC32.
22 23 24 25 |
# File 'lib/extlzma2/utils.rb', line 22 def initialize(state = 0) state = state.to_i super(state, state) end |