Method: LZMA::Utils::CRC64#initialize

Defined in:
lib/extlzma2/utils.rb

#initialize(state = 0) ⇒ CRC64

Returns a new instance of CRC64.



61
62
63
64
# File 'lib/extlzma2/utils.rb', line 61

def initialize(state = 0)
  state = state.to_i
  super(state, state)
end