Table of Contents

Types

Some User Defined Types


seq and int are just shorthand versions of the standard sequence and integer. string is a test for ANSI strings.

  • type int( i )   Same as the declaration integer().
  • type seq( s )   Same as the declaration sequence().
  • type string( s )   A sequence that only contains ANSI bytes.


    Table of Contents

    [type]
    int
    ( i )

    Same as the declaration integer().

    Returns: True if i is an integer

    Category: Types

    See Also: seq, string



    Table of Contents

    [type]
    seq
    ( s )

    Same as the declaration sequence().

    Returns: True if s is a sequence.

    Category: Types

    See Also: int, string



    Table of Contents

    [type]
    string
    ( s )

    A sequence that only contains ANSI bytes.

    Returns: True if s is a string.

    Category: Types

    See Also: int, seq