class EL_SIDE

(source code)

Client examples: CLASS_FEATURE

description

Constants representing sides of lists, strings, geometric objects, etc

note
	description: "Constants representing sides of lists, strings, geometric objects, etc"

	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-12-22 11:22:08 GMT (Friday 22nd December 2023)"
	revision: "6"

class
	EL_SIDE

feature -- Constants

	Both: INTEGER = 3

	Left: INTEGER = 1

	None: INTEGER = 0

	Right: INTEGER = 2

end