types

package
v0.0.0-...-c676e8e Latest Latest
Warning

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

Go to latest
Published: Jan 1, 2025 License: MIT Imports: 0 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Complex

type Complex interface {
	~complex64 | ~complex128
}

type Float

type Float interface {
	~float32 | ~float64
}

type Integer

type Integer interface {
	SignedInteger | UnsignedInteger
}

type Number

type Number interface {
	Real | Complex
}

type Real

type Real interface {
	Integer | Float
}

type SignedInteger

type SignedInteger interface {
	~int | ~int8 | ~int16 | ~int32 | ~int64
}

type Slice

type Slice[T any] interface {
	~[]T
}

Slice represents a generic slice type. It also includes the named types

type String

type String interface {
	~string
}

type Summable

type Summable interface {
	Number | String
}

type UnsignedInteger

type UnsignedInteger interface {
	~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | uintptr
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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