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

Online Help

All Products    Maple    MapleSim


RandomTools

  

HasFlavor

  

check if a flavor template is known

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

HasFlavor(flvr)

Parameters

'flvr

-

symbol; represents a flavor in the form of a procedure or module

Description

• 

The HasFlavor(flvr) function returns true if the flavor specified by flvr is known to function Generate.  Otherwise, false is returned.

• 

This function is part of the RandomTools package, and so it can be used in the form HasFlavor(..) only after executing the command with(RandomTools). However, it can always be accessed through the long form of the command by using the form RandomTools[HasFlavor](..).

Examples

withRandomTools:

HasFlavorA

false

(1)

AddFlavorA=rand1..20:

HasFlavorA

true

(2)

GenerateA

15

(3)

memberA,GetFlavors

true

(4)

See Also

module

procedure

RandomTools

RandomTools[AddFlavor]

RandomTools[Generate]

RandomTools[GetFlavors]

RandomTools[RemoveFlavor]