|
ENTITY finite_integer_interval SUBTYPE OF (maths_space, generic_literal); min : INTEGER; max : INTEGER; DERIVE size : positive_integer := max - min + 1; WHERE WR1: min <= max; END_ENTITY; -- finite_integer_interval |
Entity data types and their attributesgeneric_expression- maths_space - simple_generic_expression - generic_literal - finite_integer_interval min: INTEGER; max: INTEGER; (DER) size: positive_integer; |
Global rules for this entity data type- |