Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
type/truefalse - test for an expression of type truefalse
Calling Sequence
type(e::anything, 'truefalse')
Parameters
e
-
Maple expression of type anything
Description
Maple ordinarily uses a three valued logic using the boolean values true, false, and FAIL. The Maple type boolean describes this set of values.
The type truefalse refers to only the two Boolean values true and false.
The expression type(e,'truefalse') evaluates to true if, and only if, the expression e is of type truefalse, which is defined as follows. The only two expressions that are of type truefalse are the expressions true and false. No other expression is of type truefalse.
Note that every expression that is of type truefalse is also of type boolean, but that the converse is not true. The value FAIL is not of type truefalse.
Examples
type( proc() true; end proc, 'truefalse' );
See Also
boolean, convert/truefalse, evalb, type, type/boolean
Download Help Document