Method: OpenC3::Crc64#initialize
- Defined in:
- lib/openc3/utilities/crc.rb
#initialize(poly = DEFAULT_POLY, seed = DEFAULT_SEED, xor = true, reflect = true) ⇒ Crc64
Creates a 64 bit CRC algorithm instance. By default it is initialzed to use the algorithm.
307 308 309 310 311 312 |
# File 'lib/openc3/utilities/crc.rb', line 307 def initialize(poly = DEFAULT_POLY, seed = DEFAULT_SEED, xor = true, reflect = true) super(poly, seed, xor, reflect) end |