builtin

package
v0.0.0-...-85b7c0f Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 24, 2021 License: MIT Imports: 12 Imported by: 0

Documentation

Index

Constants

View Source
const ModuleID = `stdgo/builtin`

Variables

This section is empty.

Functions

func FieldGetter

func FieldGetter(value reflect.Value) reflect.Value

func NewCallerFactory

func NewCallerFactory() *callerFactory

func Require

func Require(runtime *goja.Runtime, module *goja.Object)

func Unwrap

func Unwrap(i interface{}) reflect.Value

func Wrap

func Wrap(value reflect.Value) interface{}

Types

type CallStyle

type CallStyle int

type Float32

type Float32 float32

func (Float32) ABS

func (v Float32) ABS() float32

func (Float32) Add

func (v Float32) Add(vals ...float32) float32

func (Float32) Compare

func (v Float32) Compare(val float32) goja.Value

func (Float32) Div

func (v Float32) Div(vals ...float32) (float32, error)

func (Float32) Max

func (v Float32) Max(vals ...float32) float32

func (Float32) Min

func (v Float32) Min(vals ...float32) float32

func (Float32) Mul

func (v Float32) Mul(vals ...float32) float32

func (Float32) Negate

func (v Float32) Negate() float32

func (Float32) Sqrt

func (v Float32) Sqrt() float32

func (Float32) String

func (v Float32) String() string

func (Float32) Sub

func (v Float32) Sub(vals ...float32) float32

func (Float32) ToFloat32

func (v Float32) ToFloat32() float32

func (Float32) ToFloat64

func (v Float32) ToFloat64() float64

func (Float32) ToInt

func (v Float32) ToInt() int

func (Float32) ToInt16

func (v Float32) ToInt16() int16

func (Float32) ToInt32

func (v Float32) ToInt32() int32

func (Float32) ToInt64

func (v Float32) ToInt64() int64

func (Float32) ToInt8

func (v Float32) ToInt8() int8

func (Float32) ToNumber

func (v Float32) ToNumber() goja.Value

func (Float32) ToUint

func (v Float32) ToUint() uint

func (Float32) ToUint16

func (v Float32) ToUint16() uint16

func (Float32) ToUint32

func (v Float32) ToUint32() uint32

func (Float32) ToUint64

func (v Float32) ToUint64() uint64

func (Float32) ToUint8

func (v Float32) ToUint8() uint8

type Float32Slice

type Float32Slice []float32

func NewFloat32Slice

func NewFloat32Slice(val []float32) Float32Slice

func (Float32Slice) Append

func (v Float32Slice) Append(data ...float32) []float32

func (Float32Slice) Asc

func (v Float32Slice) Asc()

func (Float32Slice) Cap

func (v Float32Slice) Cap() int

func (Float32Slice) Copy

func (v Float32Slice) Copy(src []float32) int

func (Float32Slice) Desc

func (v Float32Slice) Desc()

func (Float32Slice) Get

func (v Float32Slice) Get(index int) (float32, error)

func (Float32Slice) Join

func (v Float32Slice) Join(sep string) string

func (Float32Slice) Len

func (v Float32Slice) Len() int

func (Float32Slice) Less

func (v Float32Slice) Less(i, j int) bool

func (Float32Slice) Set

func (v Float32Slice) Set(index int, val float32) error

func (Float32Slice) Slice

func (v Float32Slice) Slice(start int) []float32

func (Float32Slice) Slice2

func (v Float32Slice) Slice2(start, end int) []float32

func (Float32Slice) String

func (v Float32Slice) String() string

func (Float32Slice) Swap

func (v Float32Slice) Swap(i, j int)

type Float64

type Float64 float64

func (Float64) ABS

func (v Float64) ABS() float64

func (Float64) Add

func (v Float64) Add(vals ...float64) float64

func (Float64) Compare

func (v Float64) Compare(val float64) goja.Value

func (Float64) Div

func (v Float64) Div(vals ...float64) (float64, error)

func (Float64) Max

func (v Float64) Max(vals ...float64) float64

func (Float64) Min

func (v Float64) Min(vals ...float64) float64

func (Float64) Mul

func (v Float64) Mul(vals ...float64) float64

func (Float64) Negate

func (v Float64) Negate() float64

func (Float64) Sqrt

func (v Float64) Sqrt() float64

func (Float64) String

func (v Float64) String() string

func (Float64) Sub

func (v Float64) Sub(vals ...float64) float64

func (Float64) ToFloat32

func (v Float64) ToFloat32() float32

func (Float64) ToFloat64

func (v Float64) ToFloat64() float64

func (Float64) ToInt

func (v Float64) ToInt() int

func (Float64) ToInt16

func (v Float64) ToInt16() int16

func (Float64) ToInt32

func (v Float64) ToInt32() int32

func (Float64) ToInt64

func (v Float64) ToInt64() int64

func (Float64) ToInt8

func (v Float64) ToInt8() int8

func (Float64) ToNumber

func (v Float64) ToNumber() goja.Value

func (Float64) ToUint

func (v Float64) ToUint() uint

func (Float64) ToUint16

func (v Float64) ToUint16() uint16

func (Float64) ToUint32

func (v Float64) ToUint32() uint32

func (Float64) ToUint64

func (v Float64) ToUint64() uint64

func (Float64) ToUint8

func (v Float64) ToUint8() uint8

type Float64Slice

type Float64Slice []float64

func NewFloat64Slice

func NewFloat64Slice(val []float64) Float64Slice

func (Float64Slice) Append

func (v Float64Slice) Append(data ...float64) []float64

func (Float64Slice) Asc

func (v Float64Slice) Asc()

func (Float64Slice) Cap

func (v Float64Slice) Cap() int

func (Float64Slice) Copy

func (v Float64Slice) Copy(src []float64) int

func (Float64Slice) Desc

func (v Float64Slice) Desc()

func (Float64Slice) Get

func (v Float64Slice) Get(index int) (float64, error)

func (Float64Slice) Join

func (v Float64Slice) Join(sep string) string

func (Float64Slice) Len

func (v Float64Slice) Len() int

func (Float64Slice) Less

func (v Float64Slice) Less(i, j int) bool

func (Float64Slice) Set

func (v Float64Slice) Set(index int, val float64) error

func (Float64Slice) Slice

func (v Float64Slice) Slice(start int) []float64

func (Float64Slice) Slice2

func (v Float64Slice) Slice2(start, end int) []float64

func (Float64Slice) String

func (v Float64Slice) String() string

func (Float64Slice) Swap

func (v Float64Slice) Swap(i, j int)

type Int

type Int int

func (Int) ABS

func (v Int) ABS() int

func (Int) Add

func (v Int) Add(vals ...int) int

func (Int) And

func (v Int) And(vals ...int) int

func (Int) AndNot

func (v Int) AndNot(vals ...int) int

func (Int) Compare

func (v Int) Compare(val int) goja.Value

func (Int) Div

func (v Int) Div(vals ...int) (int, error)

func (Int) Max

func (v Int) Max(vals ...int) int

func (Int) Min

func (v Int) Min(vals ...int) int

func (Int) Mod

func (v Int) Mod(vals ...int) (int, error)

func (Int) Mul

func (v Int) Mul(vals ...int) int

func (Int) Negate

func (v Int) Negate() int

func (Int) Not

func (v Int) Not() int

func (Int) Or

func (v Int) Or(vals ...int) int

func (Int) ShiftLeft

func (v Int) ShiftLeft(vals ...int) int

func (Int) ShiftRight

func (v Int) ShiftRight(vals ...int) int

func (Int) String

func (v Int) String() string

func (Int) Sub

func (v Int) Sub(vals ...int) int

func (Int) ToFloat32

func (v Int) ToFloat32() float32

func (Int) ToFloat64

func (v Int) ToFloat64() float64

func (Int) ToInt

func (v Int) ToInt() int

func (Int) ToInt16

func (v Int) ToInt16() int16

func (Int) ToInt32

func (v Int) ToInt32() int32

func (Int) ToInt64

func (v Int) ToInt64() int64

func (Int) ToInt8

func (v Int) ToInt8() int8

func (Int) ToNumber

func (v Int) ToNumber() goja.Value

func (Int) ToUint

func (v Int) ToUint() uint

func (Int) ToUint16

func (v Int) ToUint16() uint16

func (Int) ToUint32

func (v Int) ToUint32() uint32

func (Int) ToUint64

func (v Int) ToUint64() uint64

func (Int) ToUint8

func (v Int) ToUint8() uint8

func (Int) Xor

func (v Int) Xor(vals ...int) int

type Int16

type Int16 int16

func (Int16) ABS

func (v Int16) ABS() int16

func (Int16) Add

func (v Int16) Add(vals ...int16) int16

func (Int16) And

func (v Int16) And(vals ...int16) int16

func (Int16) AndNot

func (v Int16) AndNot(vals ...int16) int16

func (Int16) Compare

func (v Int16) Compare(val int16) goja.Value

func (Int16) Div

func (v Int16) Div(vals ...int16) (int16, error)

func (Int16) Max

func (v Int16) Max(vals ...int16) int16

func (Int16) Min

func (v Int16) Min(vals ...int16) int16

func (Int16) Mod

func (v Int16) Mod(vals ...int16) (int16, error)

func (Int16) Mul

func (v Int16) Mul(vals ...int16) int16

func (Int16) Negate

func (v Int16) Negate() int16

func (Int16) Not

func (v Int16) Not() int16

func (Int16) Or

func (v Int16) Or(vals ...int16) int16

func (Int16) ShiftLeft

func (v Int16) ShiftLeft(vals ...int) int16

func (Int16) ShiftRight

func (v Int16) ShiftRight(vals ...int) int16

func (Int16) String

func (v Int16) String() string

func (Int16) Sub

func (v Int16) Sub(vals ...int16) int16

func (Int16) ToFloat32

func (v Int16) ToFloat32() float32

func (Int16) ToFloat64

func (v Int16) ToFloat64() float64

func (Int16) ToInt

func (v Int16) ToInt() int

func (Int16) ToInt16

func (v Int16) ToInt16() int16

func (Int16) ToInt32

func (v Int16) ToInt32() int32

func (Int16) ToInt64

func (v Int16) ToInt64() int64

func (Int16) ToInt8

func (v Int16) ToInt8() int8

func (Int16) ToNumber

func (v Int16) ToNumber() goja.Value

func (Int16) ToUint

func (v Int16) ToUint() uint

func (Int16) ToUint16

func (v Int16) ToUint16() uint16

func (Int16) ToUint32

func (v Int16) ToUint32() uint32

func (Int16) ToUint64

func (v Int16) ToUint64() uint64

func (Int16) ToUint8

func (v Int16) ToUint8() uint8

func (Int16) Xor

func (v Int16) Xor(vals ...int16) int16

type Int16Slice

type Int16Slice []int16

func NewInt16Slice

func NewInt16Slice(val []int16) Int16Slice

func (Int16Slice) Append

func (v Int16Slice) Append(data ...int16) []int16

func (Int16Slice) Asc

func (v Int16Slice) Asc()

func (Int16Slice) Cap

func (v Int16Slice) Cap() int

func (Int16Slice) Copy

func (v Int16Slice) Copy(src []int16) int

func (Int16Slice) Desc

func (v Int16Slice) Desc()

func (Int16Slice) Get

func (v Int16Slice) Get(index int) (int16, error)

func (Int16Slice) Join

func (v Int16Slice) Join(sep string) string

func (Int16Slice) Len

func (v Int16Slice) Len() int

func (Int16Slice) Less

func (v Int16Slice) Less(i, j int) bool

func (Int16Slice) Set

func (v Int16Slice) Set(index int, val int16) error

func (Int16Slice) Slice

func (v Int16Slice) Slice(start int) []int16

func (Int16Slice) Slice2

func (v Int16Slice) Slice2(start, end int) []int16

func (Int16Slice) String

func (v Int16Slice) String() string

func (Int16Slice) Swap

func (v Int16Slice) Swap(i, j int)

type Int32

type Int32 int32

func (Int32) ABS

func (v Int32) ABS() int32

func (Int32) Add

func (v Int32) Add(vals ...int32) int32

func (Int32) And

func (v Int32) And(vals ...int32) int32

func (Int32) AndNot

func (v Int32) AndNot(vals ...int32) int32

func (Int32) Compare

func (v Int32) Compare(val int32) goja.Value

func (Int32) Div

func (v Int32) Div(vals ...int32) (int32, error)

func (Int32) Max

func (v Int32) Max(vals ...int32) int32

func (Int32) Min

func (v Int32) Min(vals ...int32) int32

func (Int32) Mod

func (v Int32) Mod(vals ...int32) (int32, error)

func (Int32) Mul

func (v Int32) Mul(vals ...int32) int32

func (Int32) Negate

func (v Int32) Negate() int32

func (Int32) Not

func (v Int32) Not() int32

func (Int32) Or

func (v Int32) Or(vals ...int32) int32

func (Int32) ShiftLeft

func (v Int32) ShiftLeft(vals ...int) int32

func (Int32) ShiftRight

func (v Int32) ShiftRight(vals ...int) int32

func (Int32) String

func (v Int32) String() string

func (Int32) Sub

func (v Int32) Sub(vals ...int32) int32

func (Int32) ToFloat32

func (v Int32) ToFloat32() float32

func (Int32) ToFloat64

func (v Int32) ToFloat64() float64

func (Int32) ToInt

func (v Int32) ToInt() int

func (Int32) ToInt16

func (v Int32) ToInt16() int16

func (Int32) ToInt32

func (v Int32) ToInt32() int32

func (Int32) ToInt64

func (v Int32) ToInt64() int64

func (Int32) ToInt8

func (v Int32) ToInt8() int8

func (Int32) ToNumber

func (v Int32) ToNumber() goja.Value

func (Int32) ToUint

func (v Int32) ToUint() uint

func (Int32) ToUint16

func (v Int32) ToUint16() uint16

func (Int32) ToUint32

func (v Int32) ToUint32() uint32

func (Int32) ToUint64

func (v Int32) ToUint64() uint64

func (Int32) ToUint8

func (v Int32) ToUint8() uint8

func (Int32) Xor

func (v Int32) Xor(vals ...int32) int32

type Int32Slice

type Int32Slice []int32

func NewInt32Slice

func NewInt32Slice(val []int32) Int32Slice

func (Int32Slice) Append

func (v Int32Slice) Append(data ...int32) []int32

func (Int32Slice) Asc

func (v Int32Slice) Asc()

func (Int32Slice) Cap

func (v Int32Slice) Cap() int

func (Int32Slice) Copy

func (v Int32Slice) Copy(src []int32) int

func (Int32Slice) Desc

func (v Int32Slice) Desc()

func (Int32Slice) Get

func (v Int32Slice) Get(index int) (int32, error)

func (Int32Slice) Join

func (v Int32Slice) Join(sep string) string

func (Int32Slice) Len

func (v Int32Slice) Len() int

func (Int32Slice) Less

func (v Int32Slice) Less(i, j int) bool

func (Int32Slice) Set

func (v Int32Slice) Set(index int, val int32) error

func (Int32Slice) Slice

func (v Int32Slice) Slice(start int) []int32

func (Int32Slice) Slice2

func (v Int32Slice) Slice2(start, end int) []int32

func (Int32Slice) String

func (v Int32Slice) String() string

func (Int32Slice) Swap

func (v Int32Slice) Swap(i, j int)

type Int64

type Int64 int64

func (Int64) ABS

func (v Int64) ABS() int64

func (Int64) Add

func (v Int64) Add(vals ...int64) int64

func (Int64) And

func (v Int64) And(vals ...int64) int64

func (Int64) AndNot

func (v Int64) AndNot(vals ...int64) int64

func (Int64) Compare

func (v Int64) Compare(val int64) goja.Value

func (Int64) Div

func (v Int64) Div(vals ...int64) (int64, error)

func (Int64) Max

func (v Int64) Max(vals ...int64) int64

func (Int64) Min

func (v Int64) Min(vals ...int64) int64

func (Int64) Mod

func (v Int64) Mod(vals ...int64) (int64, error)

func (Int64) Mul

func (v Int64) Mul(vals ...int64) int64

func (Int64) Negate

func (v Int64) Negate() int64

func (Int64) Not

func (v Int64) Not() int64

func (Int64) Or

func (v Int64) Or(vals ...int64) int64

func (Int64) ShiftLeft

func (v Int64) ShiftLeft(vals ...int) int64

func (Int64) ShiftRight

func (v Int64) ShiftRight(vals ...int) int64

func (Int64) String

func (v Int64) String() string

func (Int64) Sub

func (v Int64) Sub(vals ...int64) int64

func (Int64) ToFloat32

func (v Int64) ToFloat32() float32

func (Int64) ToFloat64

func (v Int64) ToFloat64() float64

func (Int64) ToInt

func (v Int64) ToInt() int

func (Int64) ToInt16

func (v Int64) ToInt16() int16

func (Int64) ToInt32

func (v Int64) ToInt32() int32

func (Int64) ToInt64

func (v Int64) ToInt64() int64

func (Int64) ToInt8

func (v Int64) ToInt8() int8

func (Int64) ToNumber

func (v Int64) ToNumber() goja.Value

func (Int64) ToUint

func (v Int64) ToUint() uint

func (Int64) ToUint16

func (v Int64) ToUint16() uint16

func (Int64) ToUint32

func (v Int64) ToUint32() uint32

func (Int64) ToUint64

func (v Int64) ToUint64() uint64

func (Int64) ToUint8

func (v Int64) ToUint8() uint8

func (Int64) Xor

func (v Int64) Xor(vals ...int64) int64

type Int64Slice

type Int64Slice []int64

func NewInt64Slice

func NewInt64Slice(val []int64) Int64Slice

func (Int64Slice) Append

func (v Int64Slice) Append(data ...int64) []int64

func (Int64Slice) Asc

func (v Int64Slice) Asc()

func (Int64Slice) Cap

func (v Int64Slice) Cap() int

func (Int64Slice) Copy

func (v Int64Slice) Copy(src []int64) int

func (Int64Slice) Desc

func (v Int64Slice) Desc()

func (Int64Slice) Get

func (v Int64Slice) Get(index int) (int64, error)

func (Int64Slice) Join

func (v Int64Slice) Join(sep string) string

func (Int64Slice) Len

func (v Int64Slice) Len() int

func (Int64Slice) Less

func (v Int64Slice) Less(i, j int) bool

func (Int64Slice) Set

func (v Int64Slice) Set(index int, val int64) error

func (Int64Slice) Slice

func (v Int64Slice) Slice(start int) []int64

func (Int64Slice) Slice2

func (v Int64Slice) Slice2(start, end int) []int64

func (Int64Slice) String

func (v Int64Slice) String() string

func (Int64Slice) Swap

func (v Int64Slice) Swap(i, j int)

type Int8

type Int8 int8

func (Int8) ABS

func (v Int8) ABS() int8

func (Int8) Add

func (v Int8) Add(vals ...int8) int8

func (Int8) And

func (v Int8) And(vals ...int8) int8

func (Int8) AndNot

func (v Int8) AndNot(vals ...int8) int8

func (Int8) Compare

func (v Int8) Compare(val int8) goja.Value

func (Int8) Div

func (v Int8) Div(vals ...int8) (int8, error)

func (Int8) Max

func (v Int8) Max(vals ...int8) int8

func (Int8) Min

func (v Int8) Min(vals ...int8) int8

func (Int8) Mod

func (v Int8) Mod(vals ...int8) (int8, error)

func (Int8) Mul

func (v Int8) Mul(vals ...int8) int8

func (Int8) Negate

func (v Int8) Negate() int8

func (Int8) Not

func (v Int8) Not() int8

func (Int8) Or

func (v Int8) Or(vals ...int8) int8

func (Int8) ShiftLeft

func (v Int8) ShiftLeft(vals ...int) int8

func (Int8) ShiftRight

func (v Int8) ShiftRight(vals ...int) int8

func (Int8) String

func (v Int8) String() string

func (Int8) Sub

func (v Int8) Sub(vals ...int8) int8

func (Int8) ToFloat32

func (v Int8) ToFloat32() float32

func (Int8) ToFloat64

func (v Int8) ToFloat64() float64

func (Int8) ToInt

func (v Int8) ToInt() int

func (Int8) ToInt16

func (v Int8) ToInt16() int16

func (Int8) ToInt32

func (v Int8) ToInt32() int32

func (Int8) ToInt64

func (v Int8) ToInt64() int64

func (Int8) ToInt8

func (v Int8) ToInt8() int8

func (Int8) ToNumber

func (v Int8) ToNumber() goja.Value

func (Int8) ToUint

func (v Int8) ToUint() uint

func (Int8) ToUint16

func (v Int8) ToUint16() uint16

func (Int8) ToUint32

func (v Int8) ToUint32() uint32

func (Int8) ToUint64

func (v Int8) ToUint64() uint64

func (Int8) ToUint8

func (v Int8) ToUint8() uint8

func (Int8) Xor

func (v Int8) Xor(vals ...int8) int8

type Int8Slice

type Int8Slice []int8

func NewInt8Slice

func NewInt8Slice(val []int8) Int8Slice

func (Int8Slice) Append

func (v Int8Slice) Append(data ...int8) []int8

func (Int8Slice) Asc

func (v Int8Slice) Asc()

func (Int8Slice) Cap

func (v Int8Slice) Cap() int

func (Int8Slice) Copy

func (v Int8Slice) Copy(src []int8) int

func (Int8Slice) Desc

func (v Int8Slice) Desc()

func (Int8Slice) Get

func (v Int8Slice) Get(index int) (int8, error)

func (Int8Slice) Join

func (v Int8Slice) Join(sep string) string

func (Int8Slice) Len

func (v Int8Slice) Len() int

func (Int8Slice) Less

func (v Int8Slice) Less(i, j int) bool

func (Int8Slice) Set

func (v Int8Slice) Set(index int, val int8) error

func (Int8Slice) Slice

func (v Int8Slice) Slice(start int) []int8

func (Int8Slice) Slice2

func (v Int8Slice) Slice2(start, end int) []int8

func (Int8Slice) String

func (v Int8Slice) String() string

func (Int8Slice) Swap

func (v Int8Slice) Swap(i, j int)

type IntSlice

type IntSlice []int

func NewIntSlice

func NewIntSlice(val []int) IntSlice

func (IntSlice) Append

func (v IntSlice) Append(data ...int) []int

func (IntSlice) Asc

func (v IntSlice) Asc()

func (IntSlice) Cap

func (v IntSlice) Cap() int

func (IntSlice) Copy

func (v IntSlice) Copy(src []int) int

func (IntSlice) Desc

func (v IntSlice) Desc()

func (IntSlice) Get

func (v IntSlice) Get(index int) (int, error)

func (IntSlice) Join

func (v IntSlice) Join(sep string) string

func (IntSlice) Len

func (v IntSlice) Len() int

func (IntSlice) Less

func (v IntSlice) Less(i, j int) bool

func (IntSlice) Set

func (v IntSlice) Set(index int, val int) error

func (IntSlice) Slice

func (v IntSlice) Slice(start int) []int

func (IntSlice) Slice2

func (v IntSlice) Slice2(start, end int) []int

func (IntSlice) String

func (v IntSlice) String() string

func (IntSlice) Swap

func (v IntSlice) Swap(i, j int)

type Uint

type Uint uint

func (Uint) Add

func (v Uint) Add(vals ...uint) uint

func (Uint) And

func (v Uint) And(vals ...uint) uint

func (Uint) AndNot

func (v Uint) AndNot(vals ...uint) uint

func (Uint) Compare

func (v Uint) Compare(val uint) goja.Value

func (Uint) Div

func (v Uint) Div(vals ...uint) (uint, error)

func (Uint) Max

func (v Uint) Max(vals ...uint) uint

func (Uint) Min

func (v Uint) Min(vals ...uint) uint

func (Uint) Mod

func (v Uint) Mod(vals ...uint) (uint, error)

func (Uint) Mul

func (v Uint) Mul(vals ...uint) uint

func (Uint) Not

func (v Uint) Not() uint

func (Uint) Or

func (v Uint) Or(vals ...uint) uint

func (Uint) ShiftLeft

func (v Uint) ShiftLeft(vals ...int) uint

func (Uint) ShiftRight

func (v Uint) ShiftRight(vals ...int) uint

func (Uint) String

func (v Uint) String() string

func (Uint) Sub

func (v Uint) Sub(vals ...uint) uint

func (Uint) ToFloat32

func (v Uint) ToFloat32() float32

func (Uint) ToFloat64

func (v Uint) ToFloat64() float64

func (Uint) ToInt

func (v Uint) ToInt() int

func (Uint) ToInt16

func (v Uint) ToInt16() int16

func (Uint) ToInt32

func (v Uint) ToInt32() int32

func (Uint) ToInt64

func (v Uint) ToInt64() int64

func (Uint) ToInt8

func (v Uint) ToInt8() int8

func (Uint) ToNumber

func (v Uint) ToNumber() goja.Value

func (Uint) ToUint

func (v Uint) ToUint() uint

func (Uint) ToUint16

func (v Uint) ToUint16() uint16

func (Uint) ToUint32

func (v Uint) ToUint32() uint32

func (Uint) ToUint64

func (v Uint) ToUint64() uint64

func (Uint) ToUint8

func (v Uint) ToUint8() uint8

func (Uint) Xor

func (v Uint) Xor(vals ...uint) uint

type Uint16

type Uint16 uint16

func (Uint16) Add

func (v Uint16) Add(vals ...uint16) uint16

func (Uint16) And

func (v Uint16) And(vals ...uint16) uint16

func (Uint16) AndNot

func (v Uint16) AndNot(vals ...uint16) uint16

func (Uint16) Compare

func (v Uint16) Compare(val uint16) goja.Value

func (Uint16) Div

func (v Uint16) Div(vals ...uint16) (uint16, error)

func (Uint16) Max

func (v Uint16) Max(vals ...uint16) uint16

func (Uint16) Min

func (v Uint16) Min(vals ...uint16) uint16

func (Uint16) Mod

func (v Uint16) Mod(vals ...uint16) (uint16, error)

func (Uint16) Mul

func (v Uint16) Mul(vals ...uint16) uint16

func (Uint16) Not

func (v Uint16) Not() uint16

func (Uint16) Or

func (v Uint16) Or(vals ...uint16) uint16

func (Uint16) ShiftLeft

func (v Uint16) ShiftLeft(vals ...int) uint16

func (Uint16) ShiftRight

func (v Uint16) ShiftRight(vals ...int) uint16

func (Uint16) String

func (v Uint16) String() string

func (Uint16) Sub

func (v Uint16) Sub(vals ...uint16) uint16

func (Uint16) ToFloat32

func (v Uint16) ToFloat32() float32

func (Uint16) ToFloat64

func (v Uint16) ToFloat64() float64

func (Uint16) ToInt

func (v Uint16) ToInt() int

func (Uint16) ToInt16

func (v Uint16) ToInt16() int16

func (Uint16) ToInt32

func (v Uint16) ToInt32() int32

func (Uint16) ToInt64

func (v Uint16) ToInt64() int64

func (Uint16) ToInt8

func (v Uint16) ToInt8() int8

func (Uint16) ToNumber

func (v Uint16) ToNumber() goja.Value

func (Uint16) ToUint

func (v Uint16) ToUint() uint

func (Uint16) ToUint16

func (v Uint16) ToUint16() uint16

func (Uint16) ToUint32

func (v Uint16) ToUint32() uint32

func (Uint16) ToUint64

func (v Uint16) ToUint64() uint64

func (Uint16) ToUint8

func (v Uint16) ToUint8() uint8

func (Uint16) Xor

func (v Uint16) Xor(vals ...uint16) uint16

type Uint16Slice

type Uint16Slice []uint16

func NewUint16Slice

func NewUint16Slice(val []uint16) Uint16Slice

func (Uint16Slice) Append

func (v Uint16Slice) Append(data ...uint16) []uint16

func (Uint16Slice) Asc

func (v Uint16Slice) Asc()

func (Uint16Slice) Cap

func (v Uint16Slice) Cap() int

func (Uint16Slice) Copy

func (v Uint16Slice) Copy(src []uint16) int

func (Uint16Slice) Desc

func (v Uint16Slice) Desc()

func (Uint16Slice) Get

func (v Uint16Slice) Get(index int) (uint16, error)

func (Uint16Slice) Join

func (v Uint16Slice) Join(sep string) string

func (Uint16Slice) Len

func (v Uint16Slice) Len() int

func (Uint16Slice) Less

func (v Uint16Slice) Less(i, j int) bool

func (Uint16Slice) Set

func (v Uint16Slice) Set(index int, val uint16) error

func (Uint16Slice) Slice

func (v Uint16Slice) Slice(start int) []uint16

func (Uint16Slice) Slice2

func (v Uint16Slice) Slice2(start, end int) []uint16

func (Uint16Slice) String

func (v Uint16Slice) String() string

func (Uint16Slice) Swap

func (v Uint16Slice) Swap(i, j int)

type Uint32

type Uint32 uint32

func (Uint32) Add

func (v Uint32) Add(vals ...uint32) uint32

func (Uint32) And

func (v Uint32) And(vals ...uint32) uint32

func (Uint32) AndNot

func (v Uint32) AndNot(vals ...uint32) uint32

func (Uint32) Compare

func (v Uint32) Compare(val uint32) goja.Value

func (Uint32) Div

func (v Uint32) Div(vals ...uint32) (uint32, error)

func (Uint32) Max

func (v Uint32) Max(vals ...uint32) uint32

func (Uint32) Min

func (v Uint32) Min(vals ...uint32) uint32

func (Uint32) Mod

func (v Uint32) Mod(vals ...uint32) (uint32, error)

func (Uint32) Mul

func (v Uint32) Mul(vals ...uint32) uint32

func (Uint32) Not

func (v Uint32) Not() uint32

func (Uint32) Or

func (v Uint32) Or(vals ...uint32) uint32

func (Uint32) ShiftLeft

func (v Uint32) ShiftLeft(vals ...int) uint32

func (Uint32) ShiftRight

func (v Uint32) ShiftRight(vals ...int) uint32

func (Uint32) String

func (v Uint32) String() string

func (Uint32) Sub

func (v Uint32) Sub(vals ...uint32) uint32

func (Uint32) ToFloat32

func (v Uint32) ToFloat32() float32

func (Uint32) ToFloat64

func (v Uint32) ToFloat64() float64

func (Uint32) ToInt

func (v Uint32) ToInt() int

func (Uint32) ToInt16

func (v Uint32) ToInt16() int16

func (Uint32) ToInt32

func (v Uint32) ToInt32() int32

func (Uint32) ToInt64

func (v Uint32) ToInt64() int64

func (Uint32) ToInt8

func (v Uint32) ToInt8() int8

func (Uint32) ToNumber

func (v Uint32) ToNumber() goja.Value

func (Uint32) ToUint

func (v Uint32) ToUint() uint

func (Uint32) ToUint16

func (v Uint32) ToUint16() uint16

func (Uint32) ToUint32

func (v Uint32) ToUint32() uint32

func (Uint32) ToUint64

func (v Uint32) ToUint64() uint64

func (Uint32) ToUint8

func (v Uint32) ToUint8() uint8

func (Uint32) Xor

func (v Uint32) Xor(vals ...uint32) uint32

type Uint32Slice

type Uint32Slice []uint32

func NewUint32Slice

func NewUint32Slice(val []uint32) Uint32Slice

func (Uint32Slice) Append

func (v Uint32Slice) Append(data ...uint32) []uint32

func (Uint32Slice) Asc

func (v Uint32Slice) Asc()

func (Uint32Slice) Cap

func (v Uint32Slice) Cap() int

func (Uint32Slice) Copy

func (v Uint32Slice) Copy(src []uint32) int

func (Uint32Slice) Desc

func (v Uint32Slice) Desc()

func (Uint32Slice) Get

func (v Uint32Slice) Get(index int) (uint32, error)

func (Uint32Slice) Join

func (v Uint32Slice) Join(sep string) string

func (Uint32Slice) Len

func (v Uint32Slice) Len() int

func (Uint32Slice) Less

func (v Uint32Slice) Less(i, j int) bool

func (Uint32Slice) Set

func (v Uint32Slice) Set(index int, val uint32) error

func (Uint32Slice) Slice

func (v Uint32Slice) Slice(start int) []uint32

func (Uint32Slice) Slice2

func (v Uint32Slice) Slice2(start, end int) []uint32

func (Uint32Slice) String

func (v Uint32Slice) String() string

func (Uint32Slice) Swap

func (v Uint32Slice) Swap(i, j int)

type Uint64

type Uint64 uint64

func (Uint64) Add

func (v Uint64) Add(vals ...uint64) uint64

func (Uint64) And

func (v Uint64) And(vals ...uint64) uint64

func (Uint64) AndNot

func (v Uint64) AndNot(vals ...uint64) uint64

func (Uint64) Compare

func (v Uint64) Compare(val uint64) goja.Value

func (Uint64) Div

func (v Uint64) Div(vals ...uint64) (uint64, error)

func (Uint64) Max

func (v Uint64) Max(vals ...uint64) uint64

func (Uint64) Min

func (v Uint64) Min(vals ...uint64) uint64

func (Uint64) Mod

func (v Uint64) Mod(vals ...uint64) (uint64, error)

func (Uint64) Mul

func (v Uint64) Mul(vals ...uint64) uint64

func (Uint64) Not

func (v Uint64) Not() uint64

func (Uint64) Or

func (v Uint64) Or(vals ...uint64) uint64

func (Uint64) ShiftLeft

func (v Uint64) ShiftLeft(vals ...int) uint64

func (Uint64) ShiftRight

func (v Uint64) ShiftRight(vals ...int) uint64

func (Uint64) String

func (v Uint64) String() string

func (Uint64) Sub

func (v Uint64) Sub(vals ...uint64) uint64

func (Uint64) ToFloat32

func (v Uint64) ToFloat32() float32

func (Uint64) ToFloat64

func (v Uint64) ToFloat64() float64

func (Uint64) ToInt

func (v Uint64) ToInt() int

func (Uint64) ToInt16

func (v Uint64) ToInt16() int16

func (Uint64) ToInt32

func (v Uint64) ToInt32() int32

func (Uint64) ToInt64

func (v Uint64) ToInt64() int64

func (Uint64) ToInt8

func (v Uint64) ToInt8() int8

func (Uint64) ToNumber

func (v Uint64) ToNumber() goja.Value

func (Uint64) ToUint

func (v Uint64) ToUint() uint

func (Uint64) ToUint16

func (v Uint64) ToUint16() uint16

func (Uint64) ToUint32

func (v Uint64) ToUint32() uint32

func (Uint64) ToUint64

func (v Uint64) ToUint64() uint64

func (Uint64) ToUint8

func (v Uint64) ToUint8() uint8

func (Uint64) Xor

func (v Uint64) Xor(vals ...uint64) uint64

type Uint64Slice

type Uint64Slice []uint64

func NewUint64Slice

func NewUint64Slice(val []uint64) Uint64Slice

func (Uint64Slice) Append

func (v Uint64Slice) Append(data ...uint64) []uint64

func (Uint64Slice) Asc

func (v Uint64Slice) Asc()

func (Uint64Slice) Cap

func (v Uint64Slice) Cap() int

func (Uint64Slice) Copy

func (v Uint64Slice) Copy(src []uint64) int

func (Uint64Slice) Desc

func (v Uint64Slice) Desc()

func (Uint64Slice) Get

func (v Uint64Slice) Get(index int) (uint64, error)

func (Uint64Slice) Join

func (v Uint64Slice) Join(sep string) string

func (Uint64Slice) Len

func (v Uint64Slice) Len() int

func (Uint64Slice) Less

func (v Uint64Slice) Less(i, j int) bool

func (Uint64Slice) Set

func (v Uint64Slice) Set(index int, val uint64) error

func (Uint64Slice) Slice

func (v Uint64Slice) Slice(start int) []uint64

func (Uint64Slice) Slice2

func (v Uint64Slice) Slice2(start, end int) []uint64

func (Uint64Slice) String

func (v Uint64Slice) String() string

func (Uint64Slice) Swap

func (v Uint64Slice) Swap(i, j int)

type Uint8

type Uint8 uint8

func (Uint8) Add

func (v Uint8) Add(vals ...uint8) uint8

func (Uint8) And

func (v Uint8) And(vals ...uint8) uint8

func (Uint8) AndNot

func (v Uint8) AndNot(vals ...uint8) uint8

func (Uint8) Compare

func (v Uint8) Compare(val uint8) goja.Value

func (Uint8) Div

func (v Uint8) Div(vals ...uint8) (uint8, error)

func (Uint8) Max

func (v Uint8) Max(vals ...uint8) uint8

func (Uint8) Min

func (v Uint8) Min(vals ...uint8) uint8

func (Uint8) Mod

func (v Uint8) Mod(vals ...uint8) (uint8, error)

func (Uint8) Mul

func (v Uint8) Mul(vals ...uint8) uint8

func (Uint8) Not

func (v Uint8) Not() uint8

func (Uint8) Or

func (v Uint8) Or(vals ...uint8) uint8

func (Uint8) ShiftLeft

func (v Uint8) ShiftLeft(vals ...int) uint8

func (Uint8) ShiftRight

func (v Uint8) ShiftRight(vals ...int) uint8

func (Uint8) String

func (v Uint8) String() string

func (Uint8) Sub

func (v Uint8) Sub(vals ...uint8) uint8

func (Uint8) ToFloat32

func (v Uint8) ToFloat32() float32

func (Uint8) ToFloat64

func (v Uint8) ToFloat64() float64

func (Uint8) ToInt

func (v Uint8) ToInt() int

func (Uint8) ToInt16

func (v Uint8) ToInt16() int16

func (Uint8) ToInt32

func (v Uint8) ToInt32() int32

func (Uint8) ToInt64

func (v Uint8) ToInt64() int64

func (Uint8) ToInt8

func (v Uint8) ToInt8() int8

func (Uint8) ToNumber

func (v Uint8) ToNumber() goja.Value

func (Uint8) ToUint

func (v Uint8) ToUint() uint

func (Uint8) ToUint16

func (v Uint8) ToUint16() uint16

func (Uint8) ToUint32

func (v Uint8) ToUint32() uint32

func (Uint8) ToUint64

func (v Uint8) ToUint64() uint64

func (Uint8) ToUint8

func (v Uint8) ToUint8() uint8

func (Uint8) Xor

func (v Uint8) Xor(vals ...uint8) uint8

type Uint8Slice

type Uint8Slice []uint8

func NewUint8Slice

func NewUint8Slice(val []uint8) Uint8Slice

func (Uint8Slice) Append

func (v Uint8Slice) Append(data ...uint8) []uint8

func (Uint8Slice) Asc

func (v Uint8Slice) Asc()

func (Uint8Slice) Cap

func (v Uint8Slice) Cap() int

func (Uint8Slice) Copy

func (v Uint8Slice) Copy(src []uint8) int

func (Uint8Slice) Desc

func (v Uint8Slice) Desc()

func (Uint8Slice) Get

func (v Uint8Slice) Get(index int) (uint8, error)

func (Uint8Slice) Join

func (v Uint8Slice) Join(sep string) string

func (Uint8Slice) Len

func (v Uint8Slice) Len() int

func (Uint8Slice) Less

func (v Uint8Slice) Less(i, j int) bool

func (Uint8Slice) Set

func (v Uint8Slice) Set(index int, val uint8) error

func (Uint8Slice) Slice

func (v Uint8Slice) Slice(start int) []uint8

func (Uint8Slice) Slice2

func (v Uint8Slice) Slice2(start, end int) []uint8

func (Uint8Slice) String

func (v Uint8Slice) String() string

func (Uint8Slice) Swap

func (v Uint8Slice) Swap(i, j int)

type UintSlice

type UintSlice []uint

func NewUintSlice

func NewUintSlice(val []uint) UintSlice

func (UintSlice) Append

func (v UintSlice) Append(data ...uint) []uint

func (UintSlice) Asc

func (v UintSlice) Asc()

func (UintSlice) Cap

func (v UintSlice) Cap() int

func (UintSlice) Copy

func (v UintSlice) Copy(src []uint) int

func (UintSlice) Desc

func (v UintSlice) Desc()

func (UintSlice) Get

func (v UintSlice) Get(index int) (uint, error)

func (UintSlice) Join

func (v UintSlice) Join(sep string) string

func (UintSlice) Len

func (v UintSlice) Len() int

func (UintSlice) Less

func (v UintSlice) Less(i, j int) bool

func (UintSlice) Set

func (v UintSlice) Set(index int, val uint) error

func (UintSlice) Slice

func (v UintSlice) Slice(start int) []uint

func (UintSlice) Slice2

func (v UintSlice) Slice2(start, end int) []uint

func (UintSlice) String

func (v UintSlice) String() string

func (UintSlice) Swap

func (v UintSlice) Swap(i, j int)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL