# Functions
Array returns an SQLType for the given array type with a specific size.
JSON makes sure the given value is converted to and scanned from SQL as a JSON.
Nullable converts the given type (which should be a pointer ideally) into a nullable type.
Slice wraps a slice value so it can be scanned from and converted to PostgreSQL arrays.
# Interfaces
SQLType is the common interface a type has to fulfill to be considered a SQL type.
# Type aliases
Float32Array represents a one-dimensional array of the PostgreSQL real type.
Int16Array represents a one-dimensional array of the PostgreSQL integer type.
Int32Array represents a one-dimensional array of the PostgreSQL integer type.
Int8Array represents a one-dimensional array of the PostgreSQL integer type.
IntArray represents a one-dimensional array of the PostgreSQL integer type.
Uint16Array represents a one-dimensional array of the PostgreSQL unsigned integer type.
Uint32Array represents a one-dimensional array of the PostgreSQL unsigned integer type.
Uint64Array represents a one-dimensional array of the PostgreSQL unsigned bigint type.
Uint8Array represents a one-dimensional array of the PostgreSQL unsigned integer type.
UintArray represents a one-dimensional array of the PostgreSQL unsigned integer type.
URL is a wrapper of url.URL that implements SQLType interface.