- list->enum-set enum-type listprocedure
Returns an enum set with the specified enum-type that contains the members of list. It is an error unless all the members are enums belonging to enum-type.
(list->enum-set (enum-type-enums pizza)) = (enum-type->enum-set pizza) (enum-set-contains? (list->enum-set pizza (list pizza-funghi pizza-chicago)) pizza-funghi) ⇒ #t