def

func:isAlpha

isAlpha(num)

Is number an ASCII alpha char: isUpper||isLower

Examples:

isAlpha("A".get(0))  >>  true
isAlpha("a".get(0))  >>  true
isAlpha("8".get(0))  >>  false
isAlpha(" ".get(0))  >>  false
isAlpha("Ã".get(0))  >>  false

meta

supertypes

feature

Feature namespace of definitions formatted as feature:name

    func

Axon function