inty

package
v0.1.14 Latest Latest
Warning

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

Go to latest
Published: Apr 17, 2024 License: Apache-2.0 Imports: 5 Imported by: 3

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Abs

func Abs(v int) int

Abs returns the absolute value of v. NOTE: this method is deprecated. Use helpy.Abs instead.

func Contains

func Contains(vs []int, v int) bool

Contains returns true if vs contains v. NOTE: this function is deprecated. Use slicey.Contains instead.

func FromString

func FromString(s string) (int, error)

FromString parses s and returns a int.

func FromStringOrDefault added in v0.1.0

func FromStringOrDefault(s string, defaultVal int) int

FromStringOrDefault parses s and returns a int.

func IntOrDefault

func IntOrDefault(v *int, defaultVal int) *int

IntOrDefault returns int if it is not nil, and a pointer to defaultVal otherwise. NOTE: this method is deprecated. Use helpy.DerefOrValue instead.

func Max

func Max(v int, vs ...int) int

Max returns the maximum value from v and vs. NOTE: this method is deprecated. Use helpy.Max instead.

func Min

func Min(v int, vs ...int) int

Min returns the minimum value from v and vs. NOTE: this method is deprecated. Use helpy.Min instead.

func Pointer

func Pointer(v int) *int

Pointer returns a pointer to the given int. NOTE: this method is deprecated. Use helpy.Pointer instead.

func Random

func Random() int

Random returns a non-negative pseudo-random number of type int

func RandomN

func RandomN(n int) int

RandomN returns a non-negative pseudo-random number in [0,n) of type int. It panics if n <= 0.

func Sort

func Sort(vs []int) []int

Sort sorts data in place. Not guaranteed to be stable.

func Unique

func Unique(vs []int) []int

Unique returns a new list containing unique ints from the given input NOTE: this function is deprecated. Use slicey.Unique instead.

Types

type IntSlice

type IntSlice []int

func (IntSlice) Len

func (p IntSlice) Len() int

func (IntSlice) Less

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

func (IntSlice) Swap

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

type Set

type Set helpy.Set[int]

NOTE: this type is deprecated. Use helpy.Set instead

func MakeSet

func MakeSet(vs ...int) Set

MakeSet returns a lookup map for int NOTE: this function is deprecated. Use helpy.MakeSet instead.

func ToSet

func ToSet(vs []int) Set

ToSet returns a lookup map for int. NOTE: this function is deprecated. Use helpy.ToSet instead.

func (Set) Contains

func (s Set) Contains(v int) bool

func (Set) Equal

func (s Set) Equal(s2 Set) bool

func (Set) Intersect

func (s Set) Intersect(s2 Set) Set

func (Set) Union

func (s Set) Union(s2 Set) Set

Jump to

Keyboard shortcuts

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