Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
type/nonemptylist - check for a nonempty list
type/nonemptyset - check for a nonempty set
Calling Sequence
type(expr, nonemptylist)
type(expr, nonemptyset)
type(expr, nonemptylist(K))
type(expr, nonemptyset(K))
Parameters
expr
-
any expression
K
type name
Description
In the first two calling sequences, the type command checks if expr is a valid nonempty Maple list or set. It returns true if expr is a list or set containing at least one element and false otherwise.
See the list and set help pages for a description of the list and set datatypes.
In the third and fourth calling sequences, where K is a specified type name, the type command checks whether expr is a nonempty list or set whose entries are of type K. That is, type(expr, nonemptylist(K)) returns true if type(expr, nonemptylist) is true and type(x, K) is true for each entry x of expr. Sets are checked in a similar manner.
See the type help page for a description of valid types in Maple.
Examples
See Also
list, set, type, type/list, type/set
Download Help Document