class EL_INTERVAL_CONSTANTS

(source code)

description

Constants to represent state of 2 integer intervals A and B which may be overlapping or disjointed.

note
	description: "[
		Constants to represent state of 2 integer intervals A and B which may be
		overlapping or disjointed.
	]"

	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-02-15 17:36:51 GMT (Wednesday 15th February 2023)"
	revision: "3"

deferred class
	EL_INTERVAL_CONSTANTS

inherit
	EL_ANY_SHARED

feature -- Constants

	A_overlaps_B_left: INTEGER = 0x11

	A_overlaps_B_right: INTEGER = 0x12

	B_contains_A: INTEGER = 0x13

	A_contains_B: INTEGER = 0x14

	A_left_of_B: INTEGER = 0x25

	A_right_of_B: INTEGER = 0x26

	Overlapping_mask: INTEGER = 0x10

	Disjoint_mask: INTEGER = 0x20

end