AddType - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

TypeTools

  

AddType

  

extend type system with user-defined type

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

AddType(typename, handler)

Parameters

typename

-

symbol; name of the type

handler

-

procedure or structured type

Description

• 

A new type typename is installed in the type system.

• 

The handler argument is either a procedure or a structured type describing the new type.

• 

If handler is a procedure, then a type call of the form  results in a call to . Additional arguments can be passed to handler from a type call of the form , which results in the call . The handler argument, if it is a procedure, must return either true or false; no other return value is acceptable. It must also be prepared to handle any argument sequence that is passed to it.

• 

If the handler argument is a structured type, then the type test is defined by the structured type interpreter as though the structured type were used directly in a call to type.

• 

The AddType command returns NULL.

Examples

(1)

(2)

(3)

(4)

TypeTools[AddType]( pair, proc( expr, elementtype := anything )
    type( expr, [ elementtype, elementtype ] )
end proc ):

(5)

(6)

(7)

See Also

type

type[structured]

TypeTools

TypeTools[GetType]

TypeTools[RemoveType]

 


Download Help Document