-- import "github.com/kokizzu/gotro/C"
func IsAlpha(ch byte) bool
IsAlpha check whether the character is a letter or not
C.IsDigit('a') // true
C.IsDigit('Z') // true
func IsDigit(ch byte) bool
IsDigit check whether the character is a digit or not
C.IsDigit('9') // true
func IsIdent(ch byte) bool
IsIdent check whether the character is a valid identifier suffix alphanumeric (letter/underscore/numeral)
C.IsIdent('9'))
func IsIdentStart(ch byte) bool
IsIdentStart check whether the character is a valid identifier prefix (letter/underscore)
C.IsIdentStart('-') // false
C.IsIdentStart('_') // true
func IsValidFilename(ch byte) bool
IsValidFilename check whether the character is a safe file-name characters (alphanumeric/comma/full-stop/dash)
C.IsValidFilename(' ') // output bool(true)