Documentation
¶
Index ¶
- Constants
- Variables
- func AccumulatedChannel(inCh <-chan []byte, size int) <-chan []byte
- func AfterNow(t time.Time) bool
- func AppStartTime() time.Time
- func AppUpTime() time.Duration
- func AppendFileBytes(path string, data []byte) error
- func AppendFileLines(path string, lines []string) error
- func AppendFileString(path string, content string) error
- func Atof32(s string) (float32, error)
- func Atof64(s string) (float64, error)
- func Atoi(s string) (int, error)
- func Atoi16(s string) (int16, error)
- func Atoi32(s string) (int32, error)
- func Atoi64(s string) (int64, error)
- func Atoi8(s string) (int8, error)
- func Atou(s string) (uint, error)
- func Atou16(s string) (uint16, error)
- func Atou32(s string) (uint32, error)
- func Atou64(s string) (uint64, error)
- func Atou8(s string) (uint8, error)
- func BackOffRetry(work func() error, times uint, delay time.Duration) error
- func BackOffRetryIf(work func() error, retryIf RetryIfFunc, times uint, delay time.Duration) error
- func BeforeNow(t time.Time) bool
- func BlockForever()
- func BoolPtr(b bool) *bool
- func BytePtr(b byte) *byte
- func ChangeDir(path string)
- func CharBool(yes bool) string
- func ChooseWeightStrMap(weightMap map[string]float64) string
- func Complex128Ptr(c complex128) *complex128
- func Complex64Ptr(c complex64) *complex64
- func ComputeSI(input float64) (float64, string)
- func ContainsChinese(s string) bool
- func ContainsJapanese(s string) bool
- func ContainsKorean(s string) bool
- func CountDigit(num int) int
- func CountFileLines(path string) (count int, err error)
- func CountLines(rd io.Reader) (count int, err error)
- func CreateHomeDir(dirs ...string) (string, error)
- func CurrentFunctionName() string
- func DateNowStr() string
- func DateUTCNowStr() string
- func DayBegin(t time.Time, loc *time.Location) time.Time
- func DayEnd(t time.Time, loc *time.Location) time.Time
- func Days(n float64) time.Duration
- func DecodeBase36ToBytes(b string) []byte
- func DelayRun(interval time.Duration, task func()) context.CancelFunc
- func DistinctInts(ori []int) []int
- func DurationPtr(d time.Duration) *time.Duration
- func DurationToString(dr time.Duration) string
- func EmojiBool(yes bool) string
- func EmojiDone(done bool) string
- func EncodeBytesAsBase36(b []byte) string
- func EncodeBytesAsBase36Bytes(b []byte) []byte
- func EnsureRange(value, min, max int) int
- func Eprint(a ...interface{}) (n int, err error)
- func Eprintf(format string, a ...interface{}) (n int, err error)
- func Eprintln(a ...interface{}) (n int, err error)
- func ErrorCause(err error) error
- func ErrorPtr(e error) *error
- func ExtractBottomLines(rd io.Reader, n int) ([]string, error)
- func ExtractFirstLine(rd io.Reader) (string, error)
- func ExtractLastLine(rd io.Reader) (string, error)
- func ExtractTopLines(rd io.Reader, n int) ([]string, error)
- func FNV128a(text string) []byte
- func FNV32a(text string) uint32
- func FNV64a(text string) uint64
- func FeelLucky(rate float64) bool
- func FixedRetry(work func() error, times uint, delay time.Duration) error
- func FixedRetryIf(work func() error, retryIf RetryIfFunc, times uint, delay time.Duration) error
- func Float32Ptr(f float32) *float32
- func Float64Ptr(f float64) *float64
- func FractionCeil(a, b int) int
- func FractionFloor(a, b int) int
- func FractionFractional(a, b int) float64
- func FractionRound(a, b int) int
- func FractionTrunc(a, b int) int
- func Fractional(f float64) float64
- func Ftoa(num float64) string
- func FtoaWithDigits(num float64, digits int) string
- func FunctionName(f interface{}) string
- func GetCDKey() string
- func GetEnvVar(key, fallback string) string
- func GetFingerprint(s string) string
- func GetHomeDir(dirs ...string) (string, error)
- func GetSID() string
- func GetUB32() string
- func GetUUID() string
- func GetUnixTime() int64
- func HereDoc(raw string) string
- func HereDocf(raw string, args ...interface{}) string
- func Hours(n float64) time.Duration
- func HumanizeBytes(s uint64) string
- func HumanizeDuration(duration time.Duration) string
- func HumanizeIBytes(s uint64) string
- func Int16Ptr(i int16) *int16
- func Int32Ptr(i int32) *int32
- func Int64Ptr(i int64) *int64
- func Int8Ptr(i int8) *int8
- func IntPtr(i int) *int
- func IntSlicePtr(s []int) *[]int
- func InterfacePtr(i interface{}) *interface{}
- func IsInterfaceNil(i interface{}) bool
- func IsNoNetworkError(err error) bool
- func IsSamePath(p1, p2 string) (bool, error)
- func IsTextFile(path string) bool
- func IsTimeoutError(err error) bool
- func Itoa(i int) string
- func Itoa16(i int16) string
- func Itoa32(i int32) string
- func Itoa64(i int64) string
- func Itoa8(i int8) string
- func LastYear() int
- func LoadGobFile(data interface{}, fileName string) error
- func LoadJSONFile(data interface{}, fileName string) error
- func LocalDayBegin(t time.Time) time.Time
- func LocalDayEnd(t time.Time) time.Time
- func MergeIntSequence(num []int, splitSep, rangeSep string) string
- func MergeMaps(ms ...map[string]string) map[string]string
- func Milliseconds(n float64) time.Duration
- func Minutes(n float64) time.Duration
- func MustParseDateString(s string) time.Time
- func NewLocalDay(year int, month time.Month, day int) time.Time
- func NewUTCDay(year int, month time.Month, day int) time.Time
- func NextYear() int
- func NoopZapLogger() *zap.Logger
- func NowStr() string
- func ParallelTaskRun(ctx context.Context, workerNum, taskNum int, runFunc TaskRunFunc, ...) error
- func ParseHumanizedBytes(s string) (uint64, error)
- func ParseIntSequence(s, splitSep, rangeSep string) ([]int, error)
- func ParseSI(input string) (float64, string, error)
- func ParseUnixTime(u int64) time.Time
- func PercentageStr(a, b int) string
- func PostJSONAndDumps(url string, dataReq, dataResp interface{}, timeout time.Duration, ...) error
- func PostJSONWithHeaders(url string, dataReq, dataResp interface{}, timeout time.Duration, ...) error
- func PrintJSON(data interface{})
- func PrintOneLineJSON(data interface{})
- func Quote() string
- func RandomDuration(min, max time.Duration) time.Duration
- func RandomFloat(min, max float64) float64
- func RandomInt(min, max int) int
- func RandomString(length int) string
- func RandomTime(start time.Time, d time.Duration) time.Time
- func RandomTimeBetween(start, end time.Time) time.Time
- func ReadByLine(rd io.Reader, callback LineFunc) (err error)
- func ReadFileByLine(path string, callback LineFunc) (err error)
- func ReadFileBytes(path string) ([]byte, error)
- func ReadFileLines(path string) (lines []string, err error)
- func ReadFileString(path string) (string, error)
- func ReadLines(rd io.Reader) (lines []string, err error)
- func ReadStdinPipe() ([]byte, error)
- func RegexMatch(pat, s string) (bool, error)
- func RenderPartialBlock(num float64, length int) string
- func RenderSparkline(nums []float64) string
- func RenderTableString(header []string, rows [][]string) string
- func ReplaceString(s string, opt ReplaceStringOptions) string
- func ReverseStr(s string) string
- func RoundToFixed(num float64, precision int) float64
- func RunCombinedCommand(command string) ([]byte, error)
- func RunQuietCommand(command string) error
- func RunSimpleCommand(command string) ([]byte, []byte, error)
- func RunWaitTimeout(timeout time.Duration, task func() error) error
- func RunePtr(r rune) *rune
- func SI(input float64, unit string) string
- func SIWithDigits(input float64, decimals int, unit string) string
- func SaveGobFile(data interface{}, fileName string) error
- func SaveJSONFile(data interface{}, fileName string) error
- func Seconds(n float64) time.Duration
- func ShortFunctionName(f interface{}) string
- func ShortNowStr() string
- func ShortUTCNowStr() string
- func SimpleRetry(work func() error) error
- func SimpleZapLogger() *zap.Logger
- func SimpleZapSugaredLogger() *zap.SugaredLogger
- func SleepForDays(n float64)
- func SleepForHours(n float64)
- func SleepForMilliseconds(n float64)
- func SleepForMinutes(n float64)
- func SleepForSeconds(n float64)
- func SleepWithContext(ctx context.Context, d time.Duration) error
- func StringPtr(s string) *string
- func StringSlicePtr(s []string) *[]string
- func StyleBold(val string) string
- func StyleCrossOut(val string) string
- func StyleEmail(email string) string
- func StyleLabeledLineBreak(label string) string
- func SubstrAfterFirst(s, sub string) string
- func SubstrAfterLast(s, sub string) string
- func SubstrBeforeFirst(s, sub string) string
- func SubstrBeforeLast(s, sub string) string
- func SubstrOrOrigin(subFunc func(string, string) string, s, sub string) string
- func ThisYear() int
- func TimePtr(t time.Time) *time.Time
- func ToJSON(data interface{}) string
- func ToOneLineJSON(data interface{}) string
- func TrimInnerSpace(s string) string
- func TrimLeftSpace(s string) string
- func TrimRightSpace(s string) string
- func TrimUTF8BOM(b []byte) []byte
- func TruncateStr(s string, limit int) string
- func UTCDayBegin(t time.Time) time.Time
- func UTCDayEnd(t time.Time) time.Time
- func UTCNow() time.Time
- func UTCNowStr() string
- func Uint16Ptr(u uint16) *uint16
- func Uint32Ptr(u uint32) *uint32
- func Uint64Ptr(u uint64) *uint64
- func Uint8Ptr(u uint8) *uint8
- func UintPtr(u uint) *uint
- func UintptrPtr(u uintptr) *uintptr
- func UnzipDir(srcZip, destDir string, opts ...UnzipConflictStrategy) ([]string, error)
- func UnzipFile(srcZip string, handle func(file *zip.File) error) error
- func UpdateMinMaxFloat64(value float64, min, max *float64)
- func UpdateMinMaxInt(value int, min, max *int)
- func Utoa(i uint) string
- func Utoa16(i uint16) string
- func Utoa32(i uint32) string
- func Utoa64(i uint64) string
- func Utoa8(i uint8) string
- func Weeks(n float64) time.Duration
- func WriteFileBytes(path string, data []byte) error
- func WriteFileLines(path string, lines []string) error
- func WriteFileString(path string, content string) error
- func WriteLines(wr io.Writer, lines []string) error
- func Years(n float64) time.Duration
- func ZipContent(destZip string, content ArchiveContent) error
- func ZipDir(destZip string, srcDirs ...string) error
- func ZipFile(destZip string, srcFiles ...string) error
- type ArchiveContent
- type Command
- func (c *Command) Done() <-chan struct{}
- func (c *Command) Error() error
- func (c *Command) Exited() bool
- func (c *Command) Kill() error
- func (c *Command) ProcessID() int
- func (c *Command) StartedAt() time.Time
- func (c *Command) Stderr() []byte
- func (c *Command) Stdout() []byte
- func (c *Command) StoppedAt() time.Time
- type CommandOptions
- type Date
- func FirstDayOfMonth() Date
- func FirstDayOfYear() Date
- func LastDayOfMonth() Date
- func LastDayOfYear() Date
- func NewDate(year, month, day int) Date
- func NewDateFromTime(t time.Time) Date
- func ParseDate(s string) (*Date, error)
- func Today() Date
- func Tomorrow() Date
- func UTCToday() Date
- func UTCTomorrow() Date
- func UTCYesterday() Date
- func Yesterday() Date
- func (d Date) Add(t time.Duration) Date
- func (d Date) AddDay(n int) Date
- func (d Date) AddMonth(n int) Date
- func (d Date) AddYear(n int) Date
- func (d Date) After(t Date) bool
- func (d Date) Before(t Date) bool
- func (d *Date) Clone() Date
- func (d Date) Day() int
- func (d Date) Equal(t Date) bool
- func (d Date) IsSameDay(t Date) bool
- func (d Date) IsSameMonth(t Date) bool
- func (d Date) IsSameYear(t Date) bool
- func (d Date) IsZero() bool
- func (d Date) LocalTime() time.Time
- func (d Date) MarshalJSON() ([]byte, error)
- func (d Date) MarshalText() (text []byte, err error)
- func (d Date) Month() time.Month
- func (d Date) String() string
- func (d Date) Sub(t Date) time.Duration
- func (d Date) SubInDay(t Date) int
- func (d Date) Time(loc *time.Location) time.Time
- func (d Date) UTCTime() time.Time
- func (d *Date) UnmarshalJSON(data []byte) error
- func (d *Date) UnmarshalText(text []byte) error
- func (d Date) Year() int
- type HTTPClient
- func (c *HTTPClient) Custom(method, url string, queryArgs, headers map[string]string, payload io.Reader) ([]byte, error)
- func (c *HTTPClient) Get(url string, queryArgs, headers map[string]string) ([]byte, error)
- func (c *HTTPClient) GetJSON(url string, queryArgs, headers map[string]string, result interface{}) ([]byte, error)
- func (c *HTTPClient) Post(url string, queryArgs, headers map[string]string, payload io.Reader) ([]byte, error)
- func (c *HTTPClient) PostData(url string, queryArgs, headers map[string]string, payload []byte) ([]byte, error)
- func (c *HTTPClient) PostForm(url string, queryArgs, headers map[string]string, form url.Values) ([]byte, error)
- func (c *HTTPClient) PostJSON(url string, queryArgs, headers map[string]string, payload, result interface{}) ([]byte, error)
- type HTTPClientOptions
- type LineFunc
- type LogConfig
- type Logger
- type NamedValues
- type ReplaceStringOptions
- type RetryIfFunc
- type Stopwatch
- type TaskResultFunc
- type TaskRunFunc
- type UnzipConflictStrategy
Constants ¶
const ( Byte = 1 << (iota * 10) KiByte MiByte GiByte TiByte PiByte EiByte )
IEC Sizes. kibis of bits
const ( IByte = 1 KByte = IByte * 1000 MByte = KByte * 1000 GByte = MByte * 1000 TByte = GByte * 1000 PByte = TByte * 1000 EByte = PByte * 1000 )
SI Sizes.
const ( // MinUint the smallest possible value of uint. MinUint = uint(0) // MaxUint the largest possible value of uint. MaxUint = ^uint(0) // MinUint32 the smallest possible value of uint32. MinUint32 = uint32(0) // MaxUint32 the largest possible value of uint32. MaxUint32 = ^uint32(0) // MinUint64 the smallest possible value of uint64. MinUint64 = uint64(0) // MaxUint64 the largest possible value of uint64. MaxUint64 = ^uint64(0) // MinInt the smallest possible value of int. MinInt = -MaxInt - 1 // MaxInt the largest possible value of int. MaxInt = int(^uint(0) >> 1) // MinInt32 the smallest possible value of int. MinInt32 = -MaxInt32 - 1 // MaxInt32 the largest possible value of int. MaxInt32 = int32(^uint32(0) >> 1) // MinInt64 the smallest possible value of int. MinInt64 = -MaxInt64 - 1 // MaxInt64 the largest possible value of int. MaxInt64 = int64(^uint64(0) >> 1) )
const ( Nanosecond time.Duration = 1 Microsecond = 1000 * Nanosecond Millisecond = 1000 * Microsecond Second = 1000 * Millisecond Minute = 60 * Second Hour = 60 * Minute Day = 24 * Hour Week = 7 * Day Year = 365 * Day )
Common durations. Inherited from libexec/src/time/time.go
Variables ¶
var ( // ZeroDate is the default Date with zero values. ZeroDate = Date{} // MinDate is the minimum Date value supported. MinDate = Date{1, 1, 1} // MaxDate is the maximum Date value supported. MaxDate = Date{9999, 12, 31} )
var ( // PositiveInfinity indicates the positive infinity value. PositiveInfinity = math.Inf(1) // NegativeInfinity indicates the negative infinity value. NegativeInfinity = math.Inf(-1) )
var ( // Simple style functions StyleIndex = makeFlexFgStyle("238", "250") StyleMessage = makeFgStyle("200") StyleName = makeFgStyle("207") StyleDate = makeFgStyle("82") StyleHighlight = makeFgStyle("227") StyleLabel = makeFgStyle("51") StyleAmount = makeFgStyle("207") StyleDot = colorFg("•", "236") StyleDash = colorFg("-", "236") StyleLineBreak = colorFg(strings.Repeat("█", lineBreakLength), "246") )
var ( // ZeroDuration is a zero-value for time.Duration. ZeroDuration time.Duration // ZeroTime is a zero-value for time.Time. ZeroTime = time.Time{} )
var DiscardWriteCloser io.WriteCloser = discardCloser{}
DiscardWriteCloser is a WriteCloser on which all Write calls succeed without doing anything.
var DiscardWriter = io.Discard
DiscardWriter is a Writer on which all Write calls succeed without doing anything.
var EmptyStr string
EmptyStr is the missing empty string for Go :)
var ( // ErrNoPipeData is returned when no data was read from the stdin pipe. ErrNoPipeData = errors.New("amoy: no pipe data") )
var ( // ErrWaitTimeout indicates timeout after waiting. ErrWaitTimeout = errors.New("amoy: wait timeout") )
var Now = time.Now
Now returns the current local time. This value is simply time.Now for consistency.
var ( // QuitRead indicates the arbitrary error means to quit from reading. QuitRead = errors.New("amoy: quit read by line") )
var ( // QuitUnzip indicates the arbitrary error means to quit from unzip. QuitUnzip = errors.New("amoy: quit unzip file") )
var (
// Version is the current version of amoy.
Version = "v0.2.1"
)
Functions ¶
func AccumulatedChannel ¶ added in v0.1.3
AccumulatedChannel returns a channel that accumulates values from given channel.
func AppStartTime ¶ added in v0.1.1
AppStartTime returns time when the app started.
func AppendFileBytes ¶ added in v0.1.0
AppendFileBytes writes the given data to the end of a file.
func AppendFileLines ¶ added in v0.1.0
AppendFileLines appends the given lines to the end of a text file.
func AppendFileString ¶ added in v0.1.0
AppendFileString appends the given content string to the end of a file.
func BackOffRetry ¶
BackOffRetry retries to execute given function with exponential backoff delay.
func BackOffRetryIf ¶
BackOffRetryIf retries to execute given function with exponential backoff delay if condition meets.
func BlockForever ¶ added in v0.1.3
func BlockForever()
BlockForever blocks current goroutine forever.
func CharBool ¶ added in v0.1.5
CharBool returns a Unicode char representing the given boolean value.
func ChooseWeightStrMap ¶ added in v0.0.16
ChooseWeightStrMap selects a random string key according to weights in value, or panics for invalid weights or internal errors.
func Complex128Ptr ¶ added in v0.2.3
func Complex128Ptr(c complex128) *complex128
Complex128Ptr returns a pointer to the complex128 value passed in.
func Complex64Ptr ¶ added in v0.2.3
Complex64Ptr returns a pointer to the complex64 value passed in.
func ComputeSI ¶
ComputeSI finds the most appropriate SI prefix for the given number and returns the prefix along with the value adjusted to be within that prefix.
See also: SI, ParseSI.
e.g. ComputeSI(2.2345e-12) -> (2.2345, "p")
func ContainsChinese ¶ added in v0.1.4
ContainsChinese returns true if the string contains Chinese characters (Hanzhi).
func ContainsJapanese ¶ added in v0.1.4
ContainsJapanese returns true if the string contains Japanese characters (Kanji, Hiragana, Katakana).
func ContainsKorean ¶ added in v0.1.4
ContainsKorean returns true if the string contains Korean characters (Hangul).
func CountDigit ¶ added in v0.1.2
CountDigit returns the number of digits of a number.
func CountFileLines ¶ added in v0.1.0
CountFileLines counts all lines from the given file (the line ending chars are not included).
func CountLines ¶
CountLines counts all lines from the given reader (the line ending chars are not included).
func CreateHomeDir ¶ added in v0.1.9
CreateHomeDir creates the nested directory inside home directory if passed in as arguments.
func CurrentFunctionName ¶
func CurrentFunctionName() string
CurrentFunctionName returns name of current function.
func DateNowStr ¶ added in v0.0.15
func DateNowStr() string
DateNowStr returns the date of current local time. e.g. 2021-09-01
func DateUTCNowStr ¶ added in v0.0.15
func DateUTCNowStr() string
DateUTCNowStr returns the date of current UTC time. e.g. 2021-09-01
func DayBegin ¶ added in v0.0.15
DayBegin returns the first moment of the given time in given location.
func DecodeBase36ToBytes ¶
DecodeBase36ToBytes decodes a base36 string to a byte slice, using alphabet.
func DelayRun ¶ added in v0.0.16
func DelayRun(interval time.Duration, task func()) context.CancelFunc
DelayRun waits for the duration to elapse and then calls task function, if it's not cancelled by the handler returns first. It's like time.AfterFunc but returns context.CancelFunc instead of time.Timer.
func DistinctInts ¶ added in v0.0.15
DistinctInts returns a new slice with the same order but without duplicate int elements.
func DurationPtr ¶ added in v0.2.3
DurationPtr returns a pointer to the time.Duration value passed in.
func DurationToString ¶ added in v0.1.4
DurationToString returns a string representation (dd:HH:MM:SS.sss) of given duration.
func EmojiBool ¶ added in v0.1.5
EmojiBool returns an emoji char representing the given boolean value.
func EmojiDone ¶ added in v0.1.5
EmojiDone returns an emoji char representing the given completion state.
func EncodeBytesAsBase36 ¶
EncodeBytesAsBase36 encodes a byte slice to base36 string.
func EncodeBytesAsBase36Bytes ¶
EncodeBytesAsBase36Bytes encodes a byte slice to base36.
func EnsureRange ¶ added in v0.1.8
EnsureRange returns the value if it's between min and max, otherwise it returns min or max, whichever is closer. It panics if min is greater than max.
func ErrorCause ¶ added in v0.2.3
ErrorCause returns the cause of an error.
func ExtractBottomLines ¶ added in v0.1.5
ExtractBottomLines extracts the bottom n lines from the given stream (the line ending chars are not included), or lesser lines if the given stream doesn't contain enough line ending chars.
func ExtractFirstLine ¶ added in v0.1.5
ExtractFirstLine extracts the first line from the given stream (the line ending chars are not included).
func ExtractLastLine ¶ added in v0.1.5
ExtractLastLine extracts the last line from the given stream (the line ending chars are not included).
func ExtractTopLines ¶ added in v0.1.5
ExtractTopLines extracts the top n lines from the given stream (the line ending chars are not included), or lesser lines if the given stream doesn't contain enough line ending chars.
func FixedRetry ¶
FixedRetry retries to execute given function with consistent same delay.
func FixedRetryIf ¶
FixedRetryIf retries to execute given function with consistent same delay if condition meets.
func Float32Ptr ¶ added in v0.2.3
Float32Ptr returns a pointer to the float32 value passed in.
func Float64Ptr ¶ added in v0.2.3
Float64Ptr returns a pointer to the float64 value passed in.
func FractionCeil ¶
FractionCeil returns the least integer value greater than or equal to a/b.
func FractionFloor ¶
FractionFloor returns the greatest integer value less than or equal to a/b.
func FractionFractional ¶ added in v0.0.15
FractionFractional returns the fractional part of floating-point number represented by a/b.
func FractionRound ¶
FractionRound returns the nearest integer, rounding half away from zero of a/b.
func FractionTrunc ¶
FractionTrunc returns the integer value of a/b.
func Fractional ¶ added in v0.1.1
Fractional returns the fractional part of floating-point number f.
func FtoaWithDigits ¶
FtoaWithDigits converts a float to a string but limits the resulting string to the given number of decimal places, and no trailing zeros.
func FunctionName ¶
func FunctionName(f interface{}) string
FunctionName returns name of the given function.
func GetCDKey ¶ added in v0.2.3
func GetCDKey() string
GetCDKey returns a new random CD key with 25 characters + 4 dashes in custom Base32 encoding (125 random bits in total), which contains no I, O, 0, 1.
func GetFingerprint ¶
GetFingerprint returns SHA1 hash of a string in fingerprint format. e.g. 0a:4d:55:a8:d7:78:e5:02:2f:ab:70:19:77:c5:d8:40:bb:c4:86:d0
func GetHomeDir ¶ added in v0.1.9
GetHomeDir returns the home directory of the current user, or the nested directory inside home directory if passed in as arguments.
func GetSID ¶
func GetSID() string
GetSID returns a new random UUID in base36 string. e.g. 3wqn6cl0uvfsbchw87izr8scm
func GetUB32 ¶ added in v0.1.10
func GetUB32() string
GetUB32 returns a new random UUID in standard base32 string without padding, i.e. 26-byte long. e.g. AMZIPGLFRVEQLKNI477QBST5V4
func GetUUID ¶
func GetUUID() string
GetUUID returns a new random UUID in hex string. e.g. 7897af8b-9188-4fc5-9e0b-8bf63a2d7bab
func HereDocf ¶ added in v0.2.2
HereDocf returns unindented and formatted string as here-document. Formatting is done as for fmt.Printf().
func HumanizeBytes ¶
HumanizeBytes produces a human readable representation of an SI size.
HumanizeBytes(82854982) -> 83 MB
func HumanizeDuration ¶
HumanizeDuration humanizes time.Duration output to a meaningful value.
func HumanizeIBytes ¶
HumanizeIBytes produces a human readable representation of an IEC size.
HumanizeIBytes(82854982) -> 79 MiB
func IntSlicePtr ¶ added in v0.2.3
IntSlicePtr returns a pointer to the []int value passed in.
func InterfacePtr ¶ added in v0.2.3
func InterfacePtr(i interface{}) *interface{}
InterfacePtr returns a pointer to the interface value passed in.
func IsInterfaceNil ¶ added in v0.2.1
func IsInterfaceNil(i interface{}) bool
IsInterfaceNil returns true if the given interface is nil.
func IsNoNetworkError ¶ added in v0.2.1
IsNoNetworkError indicates whether the error is caused by no network.
func IsSamePath ¶ added in v0.1.8
IsSamePath returns true if two paths describe the same file.
func IsTextFile ¶
IsTextFile loads and checks if the given path is a text file.
func IsTimeoutError ¶ added in v0.2.1
IsTimeoutError checks if error is timeout error.
func LoadGobFile ¶ added in v0.1.8
LoadGobFile loads object from the given gob file.
func LoadJSONFile ¶
LoadJSONFile loads object from the given JSON file.
func LocalDayBegin ¶ added in v0.0.15
LocalDayBegin returns the first moment of the given time in local timezone.
func LocalDayEnd ¶ added in v0.0.15
LocalDayEnd returns the last moment of the given time in local timezone.
func MergeIntSequence ¶ added in v0.1.5
MergeIntSequence merges int slices like [8, 8, 9, 10, 20, 12]. into sequences like "8-10,12,20".
func Milliseconds ¶ added in v0.0.14
Milliseconds returns a duration of given milliseconds.
func MustParseDateString ¶ added in v0.1.4
MustParseDateString returns a time.Time of given date string (format: 2006-01-02) in UTC, or panics if it fails.
func NewLocalDay ¶ added in v0.1.0
NewLocalDay returns the first moment of the given date in local timezone.
func NewUTCDay ¶ added in v0.1.0
NewUTCDay returns the first moment of the given date in UTC timezone.
func NoopZapLogger ¶
NoopZapLogger returns a zap logger enabled at fatal level, it basically logs nothing.
func NowStr ¶ added in v0.0.14
func NowStr() string
NowStr returns the current local time in RFC3339Nano format. e.g. 2021-09-01T12:52:33.250864+08:00
func ParallelTaskRun ¶ added in v0.1.9
func ParallelTaskRun(ctx context.Context, workerNum, taskNum int, runFunc TaskRunFunc, doneFunc TaskResultFunc) error
ParallelTaskRun runs a given number of tasks and handles results in parallel.
func ParseHumanizedBytes ¶
ParseHumanizedBytes parses a string representation of bytes into the number of bytes it represents.
ParseHumanizedBytes("42 MB") -> 42000000, nil ParseHumanizedBytes("42 mib") -> 44040192, nil
func ParseIntSequence ¶ added in v0.0.15
ParseIntSequence parses sequences like "9-12,10,20" into slices of int like [9, 10, 11, 12, 20].
func ParseSI ¶
ParseSI parses an SI string back into the number and unit.
See also: SI, ComputeSI.
e.g. ParseSI("2.2345 pF") -> (2.2345e-12, "F", nil)
func ParseUnixTime ¶
ParseUnixTime converts a unix timestamp to local time.
func PercentageStr ¶ added in v0.1.2
PercentageStr returns the percentage of a/b as a string.
func PostJSONAndDumps ¶
func PostJSONAndDumps(url string, dataReq, dataResp interface{}, timeout time.Duration, headers map[string]string, dumpReqPath, dumpRespPath string) error
PostJSONAndDumps sends payload in JSON to target URL with given timeout and headers and dumps response and parses response as JSON.
func PostJSONWithHeaders ¶
func PostJSONWithHeaders(url string, dataReq, dataResp interface{}, timeout time.Duration, headers map[string]string) error
PostJSONWithHeaders sends payload in JSON to target URL with given timeout and headers and parses response as JSON.
func PrintJSON ¶
func PrintJSON(data interface{})
PrintJSON outputs data in JSON with indent to console.
func PrintOneLineJSON ¶
func PrintOneLineJSON(data interface{})
PrintOneLineJSON outputs data in JSON in one line.
func RandomDuration ¶ added in v0.0.16
RandomDuration returns a random duration between [min, max).
func RandomFloat ¶ added in v0.1.5
RandomFloat returns a random float64 number in [min, max).
func RandomString ¶ added in v0.1.10
RandomString returns a random string with given length, length should be greater than 0.
func RandomTime ¶ added in v0.0.16
RandomTime returns a random time between [start, start+d) or [start+d, start) if d < 0.
func RandomTimeBetween ¶ added in v0.0.16
RandomTimeBetween returns a random time between [start, end).
func ReadByLine ¶
ReadByLine iterates the given Reader by lines (the line ending chars are not included).
func ReadFileByLine ¶ added in v0.1.0
ReadFileByLine iterates the given file by lines (the line ending chars are not included).
func ReadFileBytes ¶ added in v0.1.0
ReadFileBytes reads the whole named file and returns the contents. It's a sugar actually, simply calls os.ReadFile like ioutil.ReadFile does since Go 1.16.
func ReadFileLines ¶ added in v0.1.0
ReadFileLines reads all lines from the given file (the line ending chars are not included).
func ReadFileString ¶ added in v0.1.0
ReadFileString reads the whole named file and returns the contents as a string.
func ReadLines ¶
ReadLines reads all lines from the given reader (the line ending chars are not included).
func ReadStdinPipe ¶ added in v0.1.1
ReadStdinPipe reads stdin data via pipe and returns the data.
func RegexMatch ¶ added in v0.0.15
RegexMatch reports whether the string s contains any match of the regular expression pattern.
func RenderPartialBlock ¶ added in v0.2.1
RenderPartialBlock generates a partial block string like █▍░░ from a float64 between 0 and 1.
func RenderSparkline ¶ added in v0.1.6
RenderSparkline generates a sparkline string like ▅▆▂▂▅▇▂▂▃▆▆▆▅▃ from a slice of float64.
func RenderTableString ¶
RenderTableString renders the rows as table and returns as string for console.
func ReplaceString ¶ added in v0.1.9
func ReplaceString(s string, opt ReplaceStringOptions) string
ReplaceString replaces all occurrences of given strings with replacements, with options to make all the replacements case-insensitive and imitate the case of old string.
func ReverseStr ¶
ReverseStr returns a reversed string of the given string.
func RoundToFixed ¶ added in v0.0.14
RoundToFixed returns the rounding floating number with given precision.
func RunCombinedCommand ¶
RunCombinedCommand runs the command and returns its combined standard output and standard error.
func RunQuietCommand ¶
RunQuietCommand runs the command quietly and returns no standard output nor standard error.
func RunSimpleCommand ¶
RunSimpleCommand simply runs the command and returns its standard output and standard error.
func RunWaitTimeout ¶ added in v0.0.16
RunWaitTimeout calls the task function, and waits for the result for the given max timeout.
func SI ¶
SI returns a string with default formatting.
SI uses Ftoa to format float value, removing trailing zeros.
See also: ComputeSI, ParseSI.
e.g. SI(1000000, "B") -> 1 MB e.g. SI(2.2345e-12, "F") -> 2.2345 pF
func SIWithDigits ¶
SIWithDigits works like SI but limits the resulting string to the given number of decimal places.
e.g. SIWithDigits(1000000, 0, "B") -> 1 MB e.g. SIWithDigits(2.2345e-12, 2, "F") -> 2.23 pF
func SaveGobFile ¶ added in v0.1.8
SaveGobFile saves object as a gob file.
func SaveJSONFile ¶
SaveJSONFile saves object as a JSON file.
func ShortFunctionName ¶
func ShortFunctionName(f interface{}) string
ShortFunctionName returns short name of the given function.
func ShortNowStr ¶ added in v0.0.14
func ShortNowStr() string
ShortNowStr returns the current local time in short format. e.g. 2021-09-01 12:52:33
func ShortUTCNowStr ¶ added in v0.0.15
func ShortUTCNowStr() string
ShortUTCNowStr returns the current UTC time in short format. e.g. 2021-09-01 04:52:33
func SimpleRetry ¶
SimpleRetry retries to execute given function for 3 times and with exponential backoff delay starting at 300ms.
func SimpleZapLogger ¶
SimpleZapLogger returns a zap logger with color console as output.
func SimpleZapSugaredLogger ¶
func SimpleZapSugaredLogger() *zap.SugaredLogger
SimpleZapSugaredLogger returns a sugared zap logger with color console as output.
func SleepForDays ¶ added in v0.0.14
func SleepForDays(n float64)
SleepForDays pauses the current goroutine for at least the n days.
func SleepForHours ¶ added in v0.0.14
func SleepForHours(n float64)
SleepForHours pauses the current goroutine for at least the n hours.
func SleepForMilliseconds ¶ added in v0.0.14
func SleepForMilliseconds(n float64)
SleepForMilliseconds pauses the current goroutine for at least the n milliseconds.
func SleepForMinutes ¶ added in v0.0.14
func SleepForMinutes(n float64)
SleepForMinutes pauses the current goroutine for at least the n minutes.
func SleepForSeconds ¶ added in v0.0.14
func SleepForSeconds(n float64)
SleepForSeconds pauses the current goroutine for at least the n seconds.
func SleepWithContext ¶ added in v0.0.16
SleepWithContext pauses the current goroutine for the duration d or shorter duration if the context is cancelled. A negative or zero duration causes SleepWithContext to return immediately.
func StringSlicePtr ¶ added in v0.2.3
StringSlicePtr returns a pointer to the []string value passed in.
func StyleCrossOut ¶
StyleCrossOut renders a string with cross-out.
func StyleEmail ¶
StyleEmail renders a string of email with terminal colors.
func StyleLabeledLineBreak ¶ added in v0.2.1
StyleLabeledLineBreak renders a line break with a label in the middle.
func SubstrAfterFirst ¶
SubstrAfterFirst returns a substring which starts after the first occurrence of target and continues to the end, or empty string if the target is not found or empty.
func SubstrAfterLast ¶
SubstrAfterLast returns a substring which starts after the last occurrence of target and continues to the end, or empty string if the target is not found or empty.
func SubstrBeforeFirst ¶
SubstrBeforeFirst returns a substring which starts starts at the begin of a string and continues to the first occurrence of target, or empty string if the target is not found or empty.
func SubstrBeforeLast ¶
SubstrBeforeLast returns a substring which starts starts at the begin of a string and continues to the last occurrence of target, or empty string if the target is not found or empty.
func SubstrOrOrigin ¶
SubstrOrOrigin returns the original string if the target is missed in substr function.
func ToOneLineJSON ¶ added in v0.2.0
func ToOneLineJSON(data interface{}) string
ToOneLineJSON returns JSON string of data in one line.
func TrimInnerSpace ¶ added in v0.1.10
TrimInnerSpace returns a string with all inner, leading, trailing spaces removed.
func TrimLeftSpace ¶ added in v0.1.8
TrimLeftSpace returns a string with all leading spaces removed.
func TrimRightSpace ¶ added in v0.1.8
TrimRightSpace returns a string with all trailing spaces removed.
func TrimUTF8BOM ¶
TrimUTF8BOM removes the leading UTF-8 byte order mark from bytes.
func TruncateStr ¶
TruncateStr renders a truncated string of the given length, or original one if it's shorter.
func UTCDayBegin ¶ added in v0.0.15
UTCDayBegin returns the first moment of the given time in UTC timezone.
func UTCDayEnd ¶ added in v0.0.15
UTCDayEnd returns the last moment of the given time in UTC timezone.
func UTCNowStr ¶ added in v0.0.14
func UTCNowStr() string
UTCNowStr returns the current UTC time in RFC3339Nano format. e.g. 2021-09-01T04:52:33.251188Z
func UintptrPtr ¶ added in v0.2.3
UintptrPtr returns a pointer to the uintptr value passed in.
func UnzipDir ¶
func UnzipDir(srcZip, destDir string, opts ...UnzipConflictStrategy) ([]string, error)
UnzipDir decompresses a zip archive, extracts all files and folders within the zip file to an output directory.
func UpdateMinMaxFloat64 ¶ added in v0.1.8
UpdateMinMaxFloat64 updates the min and max values if the value is less than the current min or greater than the current max.
The function takes three arguments:
* value: The value to compare against the current min and max. * min: A pointer to the current min value. * max: A pointer to the current max value.
func UpdateMinMaxInt ¶ added in v0.1.8
UpdateMinMaxInt updates the min and max values if the value is less than the current min or greater than the current max.
The function takes three arguments:
* value: The value to compare against the current min and max. * min: A pointer to the current min value. * max: A pointer to the current max value.
func WriteFileBytes ¶ added in v0.1.0
WriteFileBytes writes the given data into a file.
func WriteFileLines ¶ added in v0.1.0
WriteFileLines writes the given lines as a text file.
func WriteFileString ¶ added in v0.1.0
WriteFileString writes the given content string into a file.
func WriteLines ¶
WriteLines writes the given lines to a Writer.
func ZipContent ¶
func ZipContent(destZip string, content ArchiveContent) error
ZipContent compresses data entries into a single zip archive file.
Types ¶
type ArchiveContent ¶
ArchiveContent represents a map between filename and data.
func UnzipContent ¶
func UnzipContent(srcZip string) (ArchiveContent, error)
UnzipContent decompresses a zip archive, extracts all files within the zip file to map of bytes.
type Command ¶
Command represents an external command being running or exited.
func StartCommand ¶
func StartCommand(command string, opts ...*CommandOptions) (*Command, error)
StartCommand starts the specified command with given options but does not wait for it to complete.
func StartSimpleCommand ¶
StartSimpleCommand starts the specified command but does not wait for it to complete, and simultaneously writes its standard output and standard error to given writers.
func (*Command) Done ¶
func (c *Command) Done() <-chan struct{}
Done returns a channel that's closed when the command exits.
func (*Command) Kill ¶
Kill causes the command to exit immediately, and does not wait until it has actually exited.
func (*Command) Stderr ¶
Stderr returns a slice holding the content of the standard error of the command.
type CommandOptions ¶
type CommandOptions struct { // WorkDir is the working directory of the command. WorkDir string // EnvVar appends the environment variables of the command. EnvVar map[string]string // Stdout is the writer to write standard output to. Use os.Pipe() to create a pipe for this, if you want to handle the result synchronously. Stdout io.Writer // Stderr is the writer to write standard error to. Use os.Pipe() to create a pipe for this, if you want to handle the result synchronously. Stderr io.Writer // DisableResult indicates whether to disable the buffered result of the command, especially important for long-running commands. DisableResult bool // Stdin is the input to the command's standard input. Stdin io.Reader // TODO: not implemented Timeout time.Time }
CommandOptions represents custom options to execute external command.
type Date ¶ added in v0.1.0
type Date struct {
// contains filtered or unexported fields
}
Date represents the missing data structure for date.
func FirstDayOfMonth ¶ added in v0.1.1
func FirstDayOfMonth() Date
FirstDayOfMonth returns the first day of current month.
func FirstDayOfYear ¶ added in v0.1.1
func FirstDayOfYear() Date
FirstDayOfYear returns the first day of current year.
func LastDayOfMonth ¶ added in v0.1.1
func LastDayOfMonth() Date
LastDayOfMonth returns the last day of current month.
func LastDayOfYear ¶ added in v0.1.1
func LastDayOfYear() Date
LastDayOfYear returns the last day of current year.
func NewDateFromTime ¶ added in v0.1.0
NewDateFromTime converts a time.Time into Date instance.
func UTCTomorrow ¶ added in v0.2.3
func UTCTomorrow() Date
UTCTomorrow returns the date of tomorrow in UTC.
func UTCYesterday ¶ added in v0.2.3
func UTCYesterday() Date
UTCYesterday returns the date of yesterday in UTC.
func (Date) Add ¶ added in v0.1.0
Add returns a Date instance for the duration after the given date.
func (Date) AddDay ¶ added in v0.1.0
AddDay returns a Date instance for given days after the current date.
func (Date) AddMonth ¶ added in v0.1.0
AddMonth returns a Date instance for given months after the current date.
func (Date) AddYear ¶ added in v0.1.0
AddYear returns a Date instance for given years after the current date.
func (Date) Before ¶ added in v0.1.0
Before indicates if current date is earlier than the given date.
func (Date) IsSameDay ¶ added in v0.2.2
IsSameDay returns true if current date and the given date are in the same day of the same month of the same year.
func (Date) IsSameMonth ¶ added in v0.2.2
IsSameMonth returns true if current date and the given date are in the same month of the same year.
func (Date) IsSameYear ¶ added in v0.2.2
IsSameYear returns true if current date and the given date are in the same year.
func (Date) MarshalJSON ¶ added in v0.1.0
MarshalJSON implements the json.Marshaler interface. The time is a quoted string in ISO 8601 date format, with sub-second precision added if present.
func (Date) MarshalText ¶ added in v0.1.0
MarshalText implements the encoding.TextMarshaler interface. The time is formatted in ISO 8601 date format, with sub-second precision added if present.
func (Date) Time ¶ added in v0.1.0
Time returns a time.Time with given location for current instance.
func (*Date) UnmarshalJSON ¶ added in v0.1.0
UnmarshalJSON implements the json.Unmarshaler interface. The date is expected to be a quoted string in ISO 8601 date format.
func (*Date) UnmarshalText ¶ added in v0.1.0
UnmarshalText implements the encoding.TextUnmarshaler interface. The time is expected to be in ISO 8601 date format.
type HTTPClient ¶ added in v0.2.1
HTTPClient is a wrapper of http.Client with some helper methods.
func NewHTTPClient ¶ added in v0.2.1
func NewHTTPClient(opts *HTTPClientOptions) *HTTPClient
NewHTTPClient creates a new HTTPClient.
func (*HTTPClient) Custom ¶ added in v0.2.1
func (c *HTTPClient) Custom(method, url string, queryArgs, headers map[string]string, payload io.Reader) ([]byte, error)
Custom performs a custom request with given method, url, query arguments, headers and io.Reader payload as body.
func (*HTTPClient) Get ¶ added in v0.2.1
Get performs a GET request. It shadows the http.Client.Get method.
func (*HTTPClient) GetJSON ¶ added in v0.2.1
func (c *HTTPClient) GetJSON(url string, queryArgs, headers map[string]string, result interface{}) ([]byte, error)
GetJSON performs a GET request, parses the JSON-encoded response data and stores in the value pointed to by result.
func (*HTTPClient) Post ¶ added in v0.2.1
func (c *HTTPClient) Post(url string, queryArgs, headers map[string]string, payload io.Reader) ([]byte, error)
Post performs a POST request with given io.Reader payload as body. It shadows the http.Client.Post method.
func (*HTTPClient) PostData ¶ added in v0.2.1
func (c *HTTPClient) PostData(url string, queryArgs, headers map[string]string, payload []byte) ([]byte, error)
PostData performs a POST request with given bytes payload as body.
func (*HTTPClient) PostForm ¶ added in v0.2.3
func (c *HTTPClient) PostForm(url string, queryArgs, headers map[string]string, form url.Values) ([]byte, error)
PostForm performs a POST request with given form data as body.
func (*HTTPClient) PostJSON ¶ added in v0.2.1
func (c *HTTPClient) PostJSON(url string, queryArgs, headers map[string]string, payload, result interface{}) ([]byte, error)
PostJSON performs a POST request with given JSON payload as body, parses the JSON-encoded response data and stores in the value pointed to by result.
type HTTPClientOptions ¶ added in v0.2.1
type HTTPClientOptions struct { // Client is the underlying http.Client, you can set it to use your own client with transport. Client *http.Client // Timeout is the maximum amount of time a dial will wait for a connect to complete. Timeout time.Duration // UserAgent is the User-Agent header value. UserAgent string // Headers is the default HTTP headers. Headers map[string]string // Insecure indicates whether to skip TLS verification. Insecure bool // DisableRedirect indicates whether to disable redirect for HTTP 301, 302, 303, 307, 308. DisableRedirect bool // Username is the username for basic authentication. Username string // Password is the password for basic authentication. Password string // BearerToken is the bearer token for token authentication. It will override the basic authentication if it's set together. BearerToken string }
HTTPClientOptions represents options for HTTPClient.
type LogConfig ¶
type LogConfig struct { ConsoleFormat string FileFormat string Monochrome bool MaxFileSizeMB int MaxBackups int CompressFile bool }
LogConfig stands for config of logging.
type Logger ¶
type Logger struct {
// contains filtered or unexported fields
}
Logger is a wrapper of uber/zap logger with dynamic log level.
func NewJSONLogger ¶
NewJSONLogger returns a Logger with given log path and debug mode and all output format is JSON.
func NewMonochromeLogger ¶ added in v0.1.2
NewMonochromeLogger returns a Logger with given log path and debug mode and output in console, save as json, and never cleans up.
func NewPersistentLogger ¶
NewPersistentLogger returns a Logger with given log path and debug mode and output in console with color, save as json, and never cleans up.
func (*Logger) GetLogLevel ¶
GetLogLevel returns the log level of loggers inside the wrapper.
func (*Logger) LoggerSugared ¶
func (l *Logger) LoggerSugared() *zap.SugaredLogger
LoggerSugared returns a sugared zap logger inside the wrapper.
func (*Logger) SetLogLevel ¶
SetLogLevel sets the log level of loggers inside the wrapper.
type NamedValues ¶
NamedValues represents a named value map for named capturing groups.
func ExtractNamedValues ¶
func ExtractNamedValues(r *regexp.Regexp, str string) NamedValues
ExtractNamedValues returns a named value map with the given compiled regular expression and original string.
func (NamedValues) IsEmpty ¶
func (l NamedValues) IsEmpty() bool
IsEmpty indicates if the given map is empty.
type ReplaceStringOptions ¶ added in v0.1.9
type ReplaceStringOptions struct { // Replacements is a map of old-new string pairs. Replacements map[string]string // CaseInsensitive indicates if the match should be case-insensitive. CaseInsensitive bool // ImitateResult indicates if the result should be the imitation (about case) of the original string. ImitateResult bool }
ReplaceStringOptions indicates the options for the ReplaceString function.
type RetryIfFunc ¶
RetryIfFunc represents function signature of retry if function.
type Stopwatch ¶
type Stopwatch struct {
// contains filtered or unexported fields
}
Stopwatch provides a set of methods to measure elapsed time.
func NewStopwatch ¶
func NewStopwatch() *Stopwatch
NewStopwatch returns a Stopwatch instance which just starts to measure.
func (*Stopwatch) Elapsed ¶
Elapsed returns the total elapsed time measured by the current instance.
func (*Stopwatch) ElapsedMilliseconds ¶ added in v0.0.16
ElapsedMilliseconds returns the total elapsed time measured by the current instance, in milliseconds.
type TaskResultFunc ¶ added in v0.1.9
TaskResultFunc is a function that handles the result of a task.
type TaskRunFunc ¶ added in v0.1.9
TaskRunFunc is a function that runs a task and returns the result with error.
type UnzipConflictStrategy ¶ added in v0.2.1
type UnzipConflictStrategy uint8
UnzipConflictStrategy defines the strategy to handle the conflict when extracting files from a zip archive.
const ( // UnzipConflictSkip skips the file if it already exists in the destination folder. UnzipConflictSkip UnzipConflictStrategy = iota // UnzipConflictOverwrite overwrites the file if it already exists in the destination folder. UnzipConflictOverwrite // UnzipConflictRename renames the new file if it already exists in the destination folder. UnzipConflictRename // UnzipConflictKeepOld keeps the file with earlier modification time if it already exists in the destination folder. UnzipConflictKeepOld // UnzipConflictKeepNew keeps the file with later modification time if it already exists in the destination folder. UnzipConflictKeepNew )
Source Files
¶
- base36.go
- channel.go
- console.go
- date.go
- dir.go
- discard.go
- emoji.go
- encoding.go
- error.go
- exec_run.go
- exec_start.go
- file.go
- hash.go
- heredoc.go
- http.go
- humanize_bytes.go
- humanize_duration.go
- humanize_ftoa.go
- humanize_si.go
- json.go
- line.go
- logger.go
- logger_set.go
- map.go
- math.go
- minmax.go
- pointer.go
- random.go
- range.go
- regex.go
- render.go
- replace.go
- retry.go
- run.go
- sequence.go
- shell.go
- sleep.go
- slogan.go
- stopwatch.go
- strconv.go
- string.go
- style.go
- time.go
- uuid.go
- worker.go
- zip.go