type/nonemptyset
check for a nonempty set
Calling Sequence
Parameters
Description
Supertypes
Examples
type(expr, nonemptyset)
type(expr, nonemptyset(K))
expr
-
any expression
K
type name
In the first calling sequence, the type command checks if expr is a valid nonempty Maple set. It returns true if expr is a set containing at least one element and false otherwise.
See the set help page for a description of the set datatype.
In the second calling sequence, where K is a specified type name, the type command checks whether expr is a nonempty set whose entries are of type K. That is, type(expr, nonemptyset(K)) returns true if type(expr, nonemptyset) is true and type(x, K) is true for each entry x of expr.
See the type help page for a description of valid types in Maple.
type/set
S≔1,2,32
type⁡S,nonemptyset
true
type⁡S,nonemptyset⁡rational
type⁡S,nonemptyset⁡integer
false
type⁡∅,nonemptyset
See Also
list
set
type
type/list
type/nonemptylist
Download Help Document