class EL_INTERVAL_CONSTANTS
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: "2024-08-21 8:06:31 GMT (Wednesday 21st August 2024)"
revision: "4"
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