Create a new enumeration sort.
(Symbol name, Symbol... enumNames)
| 287 | * Create a new enumeration sort. |
| 288 | **/ |
| 289 | public final <R> EnumSort<R> mkEnumSort(Symbol name, Symbol... enumNames) |
| 290 | |
| 291 | { |
| 292 | checkContextMatch(name); |
| 293 | checkContextMatch(enumNames); |
| 294 | return new EnumSort<>(this, name, enumNames); |
| 295 | } |
| 296 | |
| 297 | /** |
| 298 | * Create a new enumeration sort. |
no test coverage detected