utils

package
v0.0.0-beta.2 Latest Latest
Warning

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

Go to latest
Published: Aug 5, 2023 License: MIT Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func All

func All(tasks ...func())

异步运行 tasks 中的每一个函数

func Await

func Await[T any, V any, A ~[]T](task func(T) V, args *A) []V

异步运行同一函数多次 参数用户提供 返回参数顺序对应的结果

func AwaitWith

func AwaitWith[T any, V any, A ~[]T, R ~[]V](task func(T) V, args *A, results *R)

异步运行同一函数多次 参数用户提供 返回参数顺序对应的结果

func Clean

func Clean(original string) string

干净文本

func HideFile

func HideFile(filename string) error

func List

func List(task func(i int), length int)

异步运行同一函数多次 参数为运行序号

func RandomLetter

func RandomLetter(n int) []rune

随机字母

参考: https://xie.infoq.cn/article/f274571178f1bbe6ff8d974f3

func RandomNumber

func RandomNumber(digit int) int

随机生成指定位数数字

func RandomNumberMixString

func RandomNumberMixString(digit, mix int) string

随机混合字母的数字字符串

digit 位数 mix 混入字母个数

func RandomString

func RandomString(digit int) string

随机生成指定位数数字字符串

func SimilarText

func SimilarText(first, second string) float64

文本相似性判断

参考 https://blog.csdn.net/weixin_30402085/article/details/96165537

func Ternary

func Ternary[T any](expr bool, a, b T) T

三目运算符

func Timer

func Timer(uids ...string) gin.H

更新时间戳

Types

type EventLoop

type EventLoop[T any, V any, R ~[]V] struct {
	sync.WaitGroup
	Results *R
}

事件循环

func (*EventLoop[T, V, R]) AddTask

func (el *EventLoop[T, V, R]) AddTask(f any, args ...T)

添加任务

type Set

type Set[T comparable] map[T]void

集合

参考: https://www.zhihu.com/question/582450146

func (*Set[T]) Add

func (s *Set[T]) Add(value T)

添加

func (*Set[T]) Contains

func (s *Set[T]) Contains(value T) bool

存在

func (*Set[T]) Remove

func (s *Set[T]) Remove(value T)

移除

func (*Set[T]) Size

func (s *Set[T]) Size() int

占用

type Time

type Time struct {
	String string
	Stamp  int64
	Date   time.Time
}

时间类 方便相互转换

func NewTime

func NewTime(t any) Time

支持格式 string int64 time.Time

特别的 使用 nil 时将以当前时间创建

func (Time) Delay

func (t Time) Delay(seconds int64) Time

以当前为基准延后

func (Time) ToDate

func (t Time) ToDate() time.Time

func (Time) ToStamp

func (t Time) ToStamp() int64

func (Time) ToString

func (t Time) ToString() string

Jump to

Keyboard shortcuts

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