number

package
v0.1.0 Latest Latest
Warning

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

Go to latest
Published: Oct 13, 2022 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Contain added in v0.0.2

func Contain(arr []float64, key float64) bool

Contain ******************************************************************************

  • @DESC 浮点型切片中,是否包含指定的项浮点型(仅适用==进行判断)
  • @PARAMS arr []float64 浮点型切片
  • key float64 指定项浮点型
  • @RETURN true: 包含指定项; false: 不包含指定项
  • @AUTH Neo
  • @DATE 2022-03-07
  • @CHANGE LOGS
  • DATE CHANGER DETAIL *****************************************************************************

func ContainWithFunc added in v0.0.2

func ContainWithFunc(arr []float64, key float64, f CompFunc) bool

ContainWithFunc ******************************************************************************

  • @DESC 浮点型切片中,是否包含指定的项浮点型(使用自定义比较函数判断)
  • @PARAMS arr []float64 浮点型切片
  • key float64 指定项浮点型
  • f CompFunc 自定义比较函数
  • @RETURN true: 包含指定项; false: 不包含指定项
  • @AUTH Neo
  • @DATE 2022-03-07
  • @CHANGE LOGS
  • DATE CHANGER DETAIL *****************************************************************************

func IndexOf added in v0.0.2

func IndexOf(arr []float64, key float64) int

IndexOf ******************************************************************************

  • @DESC 找到浮点型切片中,包含指定的项浮点型的索引
  • @PARAMS arr []float64 浮点型切片
  • key float64 指定项浮点型
  • @RETURN int: 指定项索引(-1为未找到)
  • @AUTH Neo
  • @DATE 2022-03-07
  • @CHANGE LOGS
  • DATE CHANGER DETAIL *****************************************************************************

func IndexOfWithFunc added in v0.0.2

func IndexOfWithFunc(arr []float64, key float64, f CompFunc) int

IndexOfWithFunc ******************************************************************************

  • @DESC 找到浮点型切片中,包含指定的项浮点型的索引(使用自定义比较函数判断)
  • @PARAMS arr []float64 浮点型切片
  • key float64 指定项浮点型
  • @RETURN int: 指定项索引(-1为未找到)
  • @AUTH Neo
  • @DATE 2022-03-07
  • @CHANGE LOGS
  • DATE CHANGER DETAIL *****************************************************************************

func Rand

func Rand() int

func RandBetween

func RandBetween(min int, max int) int

Types

type CompFunc added in v0.0.2

type CompFunc func(v float64) bool

CompFunc ******************************************************************************

  • @DESC 比较函数的类型定义 *****************************************************************************

Jump to

Keyboard shortcuts

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