- enum-ordinal->enum enum-type exact-integerprocedure
If there exists an enum belonging to enum-type whose ordinal is exact-integer, returns it; otherwise return #f.
(enum-name (enum-ordinal->enum color 3)) ⇒ green (enum-ordinal->enum color 10) ⇒ #f
Note: There is no way to find an enum by its value, since values need not be unique.
The following convenience procedures provide enum-finding followed by access to a property.