class EL_SHARED_CYCLIC_REDUNDANCY_CHECK_32

(source code)

Client examples: BIT_POP_COUNT_COMPARISON

description

Shared cyclic redundancy check 32

note
	description: "Shared cyclic redundancy check 32"

	author: "Finnian Reilly"
	copyright: "Copyright (c) 2001-2022 Finnian Reilly"
	contact: "finnian at eiffel hyphen loop dot com"

	license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
	date: "2023-06-21 8:32:15 GMT (Wednesday 21st June 2023)"
	revision: "10"

deferred class
	EL_SHARED_CYCLIC_REDUNDANCY_CHECK_32

inherit
	EL_ANY_SHARED

feature {NONE} -- Implementation

	crc_generator: like Once_crc_generator
		do
			Result := Once_crc_generator
			Result.reset
		end

feature {NONE} -- Constants

	Once_crc_generator: EL_CYCLIC_REDUNDANCY_CHECK_32
		once
			create Result.make
		end

end