class EVC_GREATER_THAN_COMPARISON

(source code)

description

Evolicity greater than comparison

note
	description: "Evolicity greater than comparison"

	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: "2025-03-28 8:54:25 GMT (Friday 28th March 2025)"
	revision: "10"

class
	EVC_GREATER_THAN_COMPARISON

inherit
	EVC_COMPARISON
		rename
			compare_like_string_8 as compare_string_8,
			compare_like_string_32 as compare_string_32
		end

create
	make

feature {NONE} -- Implementation

	compare (left, right: COMPARABLE)
			--
		do
			is_true := left > right
		end

	compare_real_64 (left, right: REAL_64)
		do
			is_true := left > right
		end

	compare_integer_64 (left, right: INTEGER_64)
		do
			is_true := left > right
		end

end