Quark #

Modules #

Quark v1.4.0 Documentation

Contents

quark/defs #

Any #

Any type

type Any = any

Int #

32-bit integer, Range: -2147483648 to 2147483647

type Int = number
  • @global

Uint #

32-bit signed integer, Range: 0 to 4294967295

type Uint = number
  • @global

Uint16 #

16-bit signed integer, Range: 0 to 65535

type Uint16 = number
  • @global

Int16 #

16-bit integer, Range: -32768 to 32767

type Int16 = number
  • @global

Uint8 #

8-bit signed integer, Range: 0 to 255

type Uint8 = number
  • @global

Int8 #

8-bit integer, Range: -128 to 127

type Int8 = number
  • @global

Float #

32-bit floating point, Range: -3.402823466E+38 to 3.402823466E+38

type Float = number
  • @global

ErrnoCode #

The [errno,message,description] of Array

type ErrnoCode = [number,string,string?]

ErrorNewArg #

The argument type of Error.new

type ErrorNewArg = ErrnoCode | Error | string | ErrorDescribe