slicex

package
v1.0.4 Latest Latest
Warning

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

Go to latest
Published: Aug 20, 2023 License: MIT Imports: 2 Imported by: 11

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func ClearDuplicateString

func ClearDuplicateString(slice []string)

ClearDuplicateString 清除重复值

func ContainsComplex128

func ContainsComplex128(slice []complex128, target complex128) bool

ContainsComplex128 包含

func ContainsComplex64

func ContainsComplex64(slice []complex64, target complex64) bool

ContainsComplex64 包含

func ContainsFloat32

func ContainsFloat32(slice []float32, target float32) bool

ContainsFloat32 包含

func ContainsFloat64

func ContainsFloat64(slice []float64, target float64) bool

ContainsFloat64 包含

func ContainsInt

func ContainsInt(slice []int, target int) bool

ContainsInt 包含

func ContainsInt16

func ContainsInt16(slice []int16, target int16) bool

ContainsInt16 包含

func ContainsInt32

func ContainsInt32(slice []int32, target int32) bool

ContainsInt32 包含

func ContainsInt64

func ContainsInt64(slice []int64, target int64) bool

ContainsInt64 包含

func ContainsInt8

func ContainsInt8(slice []int8, target int8) bool

ContainsInt8 包含

func ContainsString

func ContainsString(slice []string, target string) bool

ContainsString 包含

func ContainsT

func ContainsT(slice []interface{}, target interface{}) bool

ContainsT 包含

func ContainsUint

func ContainsUint(slice []uint, target uint) bool

ContainsUint 包含

func ContainsUint16

func ContainsUint16(slice []uint16, target uint16) bool

ContainsUint16 包含

func ContainsUint32

func ContainsUint32(slice []uint32, target uint32) bool

ContainsUint32 包含

func ContainsUint64

func ContainsUint64(slice []uint64, target uint64) bool

ContainsUint64 包含

func ContainsUint8

func ContainsUint8(slice []uint8, target uint8) bool

ContainsUint8 包含

func CopyByte

func CopyByte(slice []byte) []uint8

func CopyString

func CopyString(slice []string) []string

CopyString 克隆

func CopyT

func CopyT(slice []interface{}) []interface{}

func CopyUint8

func CopyUint8(slice []uint8) []uint8

func EqualComplex128

func EqualComplex128(a, b []complex128) bool

EqualComplex128 比较

func EqualComplex64

func EqualComplex64(a, b []complex64) bool

EqualComplex64 比较

func EqualFloat32

func EqualFloat32(a, b []float32) bool

EqualFloat32 比较

func EqualFloat64

func EqualFloat64(a, b []float64) bool

EqualFloat64 比较

func EqualInt

func EqualInt(a, b []int) bool

EqualInt 比较

func EqualInt16

func EqualInt16(a, b []int16) bool

EqualInt16 比较

func EqualInt32

func EqualInt32(a, b []int32) bool

EqualInt32 比较

func EqualInt64

func EqualInt64(a, b []int64) bool

EqualInt64 比较

func EqualInt8

func EqualInt8(a, b []int8) bool

EqualInt8 比较

func EqualString

func EqualString(a, b []string) bool

EqualString 比较

func EqualT

func EqualT(a, b []interface{}) bool

EqualT 比较

func EqualUint

func EqualUint(a, b []uint) bool

EqualUint 比较

func EqualUint16

func EqualUint16(a, b []uint16) bool

EqualUint16 比较

func EqualUint32

func EqualUint32(a, b []uint32) bool

EqualUint32 比较

func EqualUint64

func EqualUint64(a, b []uint64) bool

EqualUint64 比较

func EqualUint8

func EqualUint8(a, b []uint8) bool

EqualUint8 比较

func IndexComplex128

func IndexComplex128(slice []complex128, target complex128) (int, bool)

IndexComplex128 从头部查找

func IndexComplex64

func IndexComplex64(slice []complex64, target complex64) (int, bool)

IndexComplex64 从头部查找

func IndexFloat32

func IndexFloat32(slice []float32, target float32) (int, bool)

IndexFloat32 从头部查找

func IndexFloat64

func IndexFloat64(slice []float64, target float64) (int, bool)

IndexFloat64 从头部查找

func IndexInt

func IndexInt(slice []int, target int) (int, bool)

IndexInt 从头部查找

func IndexInt16

func IndexInt16(slice []int16, target int16) (int, bool)

IndexInt16 从头部查找

func IndexInt32

func IndexInt32(slice []int32, target int32) (int, bool)

IndexInt32 从头部查找

func IndexInt64

func IndexInt64(slice []int64, target int64) (int, bool)

IndexInt64 从头部查找

func IndexInt8

func IndexInt8(slice []int8, target int8) (int, bool)

IndexInt8 从头部查找

func IndexString

func IndexString(slice []string, target string) (int, bool)

IndexString 从头部查找

func IndexT

func IndexT(slice []interface{}, target interface{}) (int, bool)

IndexT 从头部查找

func IndexUint

func IndexUint(slice []uint, target uint) (int, bool)

IndexUint 从头部查找

func IndexUint16

func IndexUint16(slice []uint16, target uint16) (int, bool)

IndexUint16 从头部查找

func IndexUint32

func IndexUint32(slice []uint32, target uint32) (int, bool)

IndexUint32 从头部查找

func IndexUint64

func IndexUint64(slice []uint64, target uint64) (int, bool)

IndexUint64 从头部查找

func IndexUint8

func IndexUint8(slice []uint8, target uint8) (int, bool)

IndexUint8 从头部查找

func InsertComplex128

func InsertComplex128(slice []complex128, pos int, target ...complex128) []complex128

InsertComplex128 按位置插入

func InsertComplex64

func InsertComplex64(slice []complex64, pos int, target ...complex64) []complex64

InsertComplex64 按位置插入

func InsertFloat32

func InsertFloat32(slice []float32, pos int, target ...float32) []float32

InsertFloat32 按位置插入

func InsertFloat64

func InsertFloat64(slice []float64, pos int, target ...float64) []float64

InsertFloat64 按位置插入

func InsertHeadComplex128

func InsertHeadComplex128(slice []complex128, target ...complex128) []complex128

InsertHeadComplex128 头插入

func InsertHeadComplex64

func InsertHeadComplex64(slice []complex64, target ...complex64) []complex64

InsertHeadComplex64 头插入

func InsertHeadFloat32

func InsertHeadFloat32(slice []float32, target ...float32) []float32

InsertHeadFloat32 头插入

func InsertHeadFloat64

func InsertHeadFloat64(slice []float64, target ...float64) []float64

InsertHeadFloat64 头插入

func InsertHeadInt

func InsertHeadInt(slice []int, target ...int) []int

InsertHeadInt 头插入

func InsertHeadInt16

func InsertHeadInt16(slice []int16, target ...int16) []int16

InsertHeadInt16 头插入

func InsertHeadInt32

func InsertHeadInt32(slice []int32, target ...int32) []int32

InsertHeadInt32 头插入

func InsertHeadInt64

func InsertHeadInt64(slice []int64, target ...int64) []int64

InsertHeadInt64 头插入

func InsertHeadInt8

func InsertHeadInt8(slice []int8, target ...int8) []int8

InsertHeadInt8 头插入

func InsertHeadString

func InsertHeadString(slice []string, target ...string) []string

InsertHeadString 头插入

func InsertHeadT

func InsertHeadT(slice []interface{}, target ...interface{}) []interface{}

InsertHeadT 头插入

func InsertHeadUint

func InsertHeadUint(slice []uint, target ...uint) []uint

InsertHeadUint 头插入

func InsertHeadUint16

func InsertHeadUint16(slice []uint16, target ...uint16) []uint16

InsertHeadUint16 头插入

func InsertHeadUint32

func InsertHeadUint32(slice []uint32, target ...uint32) []uint32

InsertHeadUint32 头插入

func InsertHeadUint64

func InsertHeadUint64(slice []uint64, target ...uint64) []uint64

InsertHeadUint64 头插入

func InsertHeadUint8

func InsertHeadUint8(slice []uint8, target ...uint8) []uint8

InsertHeadUint8 头插入

func InsertInt

func InsertInt(slice []int, pos int, target ...int) []int

InsertInt 按位置插入

func InsertInt16

func InsertInt16(slice []int16, pos int, target ...int16) []int16

InsertInt16 按位置插入

func InsertInt32

func InsertInt32(slice []int32, pos int, target ...int32) []int32

InsertInt32 按位置插入

func InsertInt64

func InsertInt64(slice []int64, pos int, target ...int64) []int64

InsertInt64 按位置插入

func InsertInt8

func InsertInt8(slice []int8, pos int, target ...int8) []int8

InsertInt8 按位置插入

func InsertString

func InsertString(slice []string, pos int, target ...string) []string

InsertString 按位置插入

func InsertT

func InsertT(slice []interface{}, pos int, target ...interface{}) []interface{}

InsertT 按位置插入

func InsertTailComplex128

func InsertTailComplex128(slice []complex128, target ...complex128) []complex128

InsertTailComplex128 尾插入

func InsertTailComplex64

func InsertTailComplex64(slice []complex64, target ...complex64) []complex64

InsertTailComplex64 尾插入

func InsertTailFloat32

func InsertTailFloat32(slice []float32, target ...float32) []float32

InsertTailFloat32 尾插入

func InsertTailFloat64

func InsertTailFloat64(slice []float64, target ...float64) []float64

InsertTailFloat64 尾插入

func InsertTailInt

func InsertTailInt(slice []int, target ...int) []int

InsertTailInt 尾插入

func InsertTailInt16

func InsertTailInt16(slice []int16, target ...int16) []int16

InsertTailInt16 尾插入

func InsertTailInt32

func InsertTailInt32(slice []int32, target ...int32) []int32

InsertTailInt32 尾插入

func InsertTailInt64

func InsertTailInt64(slice []int64, target ...int64) []int64

InsertTailInt64 尾插入

func InsertTailInt8

func InsertTailInt8(slice []int8, target ...int8) []int8

InsertTailInt8 尾插入

func InsertTailString

func InsertTailString(slice []string, target ...string) []string

InsertTailString 尾插入

func InsertTailT

func InsertTailT(slice []interface{}, target ...interface{}) []interface{}

InsertTailT 尾插入

func InsertTailUint

func InsertTailUint(slice []uint, target ...uint) []uint

InsertTailUint 尾插入

func InsertTailUint16

func InsertTailUint16(slice []uint16, target ...uint16) []uint16

InsertTailUint16 尾插入

func InsertTailUint32

func InsertTailUint32(slice []uint32, target ...uint32) []uint32

InsertTailUint32 尾插入

func InsertTailUint64

func InsertTailUint64(slice []uint64, target ...uint64) []uint64

InsertTailUint64 尾插入

func InsertTailUint8

func InsertTailUint8(slice []uint8, target ...uint8) []uint8

InsertTailUint8 尾插入

func InsertUint

func InsertUint(slice []uint, pos int, target ...uint) []uint

InsertUint 按位置插入

func InsertUint16

func InsertUint16(slice []uint16, pos int, target ...uint16) []uint16

InsertUint16 按位置插入

func InsertUint32

func InsertUint32(slice []uint32, pos int, target ...uint32) []uint32

InsertUint32 按位置插入

func InsertUint64

func InsertUint64(slice []uint64, pos int, target ...uint64) []uint64

InsertUint64 按位置插入

func InsertUint8

func InsertUint8(slice []uint8, pos int, target ...uint8) []uint8

InsertUint8 按位置插入

func LastIndexComplex128

func LastIndexComplex128(slice []complex128, target complex128) (int, bool)

LastIndexComplex128 从尾部查找

func LastIndexComplex64

func LastIndexComplex64(slice []complex64, target complex64) (int, bool)

LastIndexComplex64 从尾部查找

func LastIndexFloat32

func LastIndexFloat32(slice []float32, target float32) (int, bool)

LastIndexFloat32 从尾部查找

func LastIndexFloat64

func LastIndexFloat64(slice []float64, target float64) (int, bool)

LastIndexFloat64 从尾部查找

func LastIndexInt

func LastIndexInt(slice []int, target int) (int, bool)

LastIndexInt 从尾部查找

func LastIndexInt16

func LastIndexInt16(slice []int16, target int16) (int, bool)

LastIndexInt16 从尾部查找

func LastIndexInt32

func LastIndexInt32(slice []int32, target int32) (int, bool)

LastIndexInt32 从尾部查找

func LastIndexInt64

func LastIndexInt64(slice []int64, target int64) (int, bool)

LastIndexInt64 从尾部查找

func LastIndexInt8

func LastIndexInt8(slice []int8, target int8) (int, bool)

LastIndexInt8 从尾部查找

func LastIndexString

func LastIndexString(slice []string, target string) (int, bool)

LastIndexString 从尾部查找

func LastIndexT

func LastIndexT(slice []interface{}, target interface{}) (int, bool)

LastIndexT 从尾部查找

func LastIndexUint

func LastIndexUint(slice []uint, target uint) (int, bool)

LastIndexUint 从尾部查找

func LastIndexUint16

func LastIndexUint16(slice []uint16, target uint16) (int, bool)

LastIndexUint16 从尾部查找

func LastIndexUint32

func LastIndexUint32(slice []uint32, target uint32) (int, bool)

LastIndexUint32 从尾部查找

func LastIndexUint64

func LastIndexUint64(slice []uint64, target uint64) (int, bool)

LastIndexUint64 从尾部查找

func LastIndexUint8

func LastIndexUint8(slice []uint8, target uint8) (int, bool)

LastIndexUint8 从尾部查找

func MergeComplex128

func MergeComplex128(slices ...[]complex128) []complex128

MergeComplex128 合并

func MergeComplex64

func MergeComplex64(slices ...[]complex64) []complex64

MergeComplex64 合并

func MergeFloat32

func MergeFloat32(slices ...[]float32) []float32

MergeFloat32 合并

func MergeFloat64

func MergeFloat64(slices ...[]float64) []float64

MergeFloat64 合并

func MergeInt

func MergeInt(slices ...[]int) []int

MergeInt 合并

func MergeInt16

func MergeInt16(slices ...[]int16) []int16

MergeInt16 合并

func MergeInt32

func MergeInt32(slices ...[]int32) []int32

MergeInt32 合并

func MergeInt64

func MergeInt64(slices ...[]int64) []int64

MergeInt64 合并

func MergeInt8

func MergeInt8(slices ...[]int8) []int8

MergeInt8 合并

func MergeString

func MergeString(slices ...[]string) []string

MergeString 合并

func MergeT

func MergeT(slices ...[]interface{}) []interface{}

MergeT 合并

func MergeUint

func MergeUint(slices ...[]uint) []uint

MergeUint 合并

func MergeUint16

func MergeUint16(slices ...[]uint16) []uint16

MergeUint16 合并

func MergeUint32

func MergeUint32(slices ...[]uint32) []uint32

MergeUint32 合并

func MergeUint64

func MergeUint64(slices ...[]uint64) []uint64

MergeUint64 合并

func MergeUint8

func MergeUint8(slices ...[]uint8) []uint8

MergeUint8 合并

func RemoveAllValueComplex128

func RemoveAllValueComplex128(slice []complex128, target complex128) ([]complex128, bool)

RemoveAllValueComplex128 按值删除

func RemoveAllValueComplex64

func RemoveAllValueComplex64(slice []complex64, target complex64) ([]complex64, bool)

RemoveAllValueComplex64 按值删除

func RemoveAllValueFloat32

func RemoveAllValueFloat32(slice []float32, target float32) ([]float32, bool)

RemoveAllValueFloat32 按值删除

func RemoveAllValueFloat64

func RemoveAllValueFloat64(slice []float64, target float64) ([]float64, bool)

RemoveAllValueFloat64 按值删除

func RemoveAllValueInt

func RemoveAllValueInt(slice []int, target int) ([]int, bool)

RemoveAllValueInt 按值删除

func RemoveAllValueInt16

func RemoveAllValueInt16(slice []int16, target int16) ([]int16, bool)

RemoveAllValueInt16 按值删除

func RemoveAllValueInt32

func RemoveAllValueInt32(slice []int32, target int32) ([]int32, bool)

RemoveAllValueInt32 按值删除

func RemoveAllValueInt64

func RemoveAllValueInt64(slice []int64, target int64) ([]int64, bool)

RemoveAllValueInt64 按值删除

func RemoveAllValueInt8

func RemoveAllValueInt8(slice []int8, target int8) ([]int8, bool)

RemoveAllValueInt8 按值删除

func RemoveAllValueString

func RemoveAllValueString(slice []string, target string) ([]string, bool)

RemoveAllValueString 按值删除

func RemoveAllValueT

func RemoveAllValueT(slice []interface{}, target interface{}) ([]interface{}, bool)

RemoveAllValueT 按值删除

func RemoveAllValueUint

func RemoveAllValueUint(slice []uint, target uint) ([]uint, bool)

RemoveAllValueUint 按值删除

func RemoveAllValueUint16

func RemoveAllValueUint16(slice []uint16, target uint16) ([]uint16, bool)

RemoveAllValueUint16 按值删除

func RemoveAllValueUint32

func RemoveAllValueUint32(slice []uint32, target uint32) ([]uint32, bool)

RemoveAllValueUint32 按值删除

func RemoveAllValueUint64

func RemoveAllValueUint64(slice []uint64, target uint64) ([]uint64, bool)

RemoveAllValueUint64 按值删除

func RemoveAllValueUint8

func RemoveAllValueUint8(slice []uint8, target uint8) ([]uint8, bool)

RemoveAllValueUint8 按值删除

func RemoveAtComplex128

func RemoveAtComplex128(slice []complex128, pos int) ([]complex128, complex128, bool)

RemoveAtComplex128 按点删除

func RemoveAtComplex64

func RemoveAtComplex64(slice []complex64, pos int) ([]complex64, complex64, bool)

RemoveAtComplex64 按点删除

func RemoveAtFloat32

func RemoveAtFloat32(slice []float32, pos int) ([]float32, float32, bool)

RemoveAtFloat32 按点删除

func RemoveAtFloat64

func RemoveAtFloat64(slice []float64, pos int) ([]float64, float64, bool)

RemoveAtFloat64 按点删除

func RemoveAtInt

func RemoveAtInt(slice []int, pos int) ([]int, int, bool)

RemoveAtInt 按点删除

func RemoveAtInt16

func RemoveAtInt16(slice []int16, pos int) ([]int16, int16, bool)

RemoveAtInt16 按点删除

func RemoveAtInt32

func RemoveAtInt32(slice []int32, pos int) ([]int32, int32, bool)

RemoveAtInt32 按点删除

func RemoveAtInt64

func RemoveAtInt64(slice []int64, pos int) ([]int64, int64, bool)

RemoveAtInt64 按点删除

func RemoveAtInt8

func RemoveAtInt8(slice []int8, pos int) ([]int8, int8, bool)

RemoveAtInt8 按点删除

func RemoveAtString

func RemoveAtString(slice []string, pos int) ([]string, string, bool)

RemoveAtString 按点删除

func RemoveAtT

func RemoveAtT(slice []interface{}, pos int) ([]interface{}, interface{}, bool)

RemoveAtT 按点删除

func RemoveAtUint

func RemoveAtUint(slice []uint, pos int) ([]uint, uint, bool)

RemoveAtUint 按点删除

func RemoveAtUint16

func RemoveAtUint16(slice []uint16, pos int) ([]uint16, uint16, bool)

RemoveAtUint16 按点删除

func RemoveAtUint32

func RemoveAtUint32(slice []uint32, pos int) ([]uint32, uint32, bool)

RemoveAtUint32 按点删除

func RemoveAtUint64

func RemoveAtUint64(slice []uint64, pos int) ([]uint64, uint64, bool)

RemoveAtUint64 按点删除

func RemoveAtUint8

func RemoveAtUint8(slice []uint8, pos int) ([]uint8, uint8, bool)

RemoveAtUint8 按点删除

func RemoveFromComplex128

func RemoveFromComplex128(slice []complex128, startPos int, length int) (result []complex128, removed []complex128, ok bool)

RemoveFromComplex128 删除区间

func RemoveFromComplex64

func RemoveFromComplex64(slice []complex64, startPos int, length int) (result []complex64, removed []complex64, ok bool)

RemoveFromComplex64 删除区间

func RemoveFromFloat32

func RemoveFromFloat32(slice []float32, startPos int, length int) (result []float32, removed []float32, ok bool)

RemoveFromFloat32 删除区间

func RemoveFromFloat64

func RemoveFromFloat64(slice []float64, startPos int, length int) (result []float64, removed []float64, ok bool)

RemoveFromFloat64 删除区间

func RemoveFromInt

func RemoveFromInt(slice []int, startPos int, length int) (result []int, removed []int, ok bool)

RemoveFromInt 删除区间

func RemoveFromInt16

func RemoveFromInt16(slice []int16, startPos int, length int) (result []int16, removed []int16, ok bool)

RemoveFromInt16 删除区间

func RemoveFromInt32

func RemoveFromInt32(slice []int32, startPos int, length int) (result []int32, removed []int32, ok bool)

RemoveFromInt32 删除区间

func RemoveFromInt64

func RemoveFromInt64(slice []int64, startPos int, length int) (result []int64, removed []int64, ok bool)

RemoveFromInt64 删除区间

func RemoveFromInt8

func RemoveFromInt8(slice []int8, startPos int, length int) (result []int8, removed []int8, ok bool)

RemoveFromInt8 删除区间

func RemoveFromString

func RemoveFromString(slice []string, startPos int, length int) (result []string, removed []string, ok bool)

RemoveFromString 删除区间

func RemoveFromT

func RemoveFromT(slice []interface{}, startPos int, length int) (result []interface{}, removed []interface{}, ok bool)

RemoveFromT 删除区间

func RemoveFromUint

func RemoveFromUint(slice []uint, startPos int, length int) (result []uint, removed []uint, ok bool)

RemoveFromUint 删除区间

func RemoveFromUint16

func RemoveFromUint16(slice []uint16, startPos int, length int) (result []uint16, removed []uint16, ok bool)

RemoveFromUint16 删除区间

func RemoveFromUint32

func RemoveFromUint32(slice []uint32, startPos int, length int) (result []uint32, removed []uint32, ok bool)

RemoveFromUint32 删除区间

func RemoveFromUint64

func RemoveFromUint64(slice []uint64, startPos int, length int) (result []uint64, removed []uint64, ok bool)

RemoveFromUint64 删除区间

func RemoveFromUint8

func RemoveFromUint8(slice []uint8, startPos int, length int) (result []uint8, removed []uint8, ok bool)

RemoveFromUint8 删除区间

func RemoveHeadComplex128

func RemoveHeadComplex128(slice []complex128) ([]complex128, complex128, bool)

RemoveHeadComplex128 删除头

func RemoveHeadComplex64

func RemoveHeadComplex64(slice []complex64) ([]complex64, complex64, bool)

RemoveHeadComplex64 删除头

func RemoveHeadFloat32

func RemoveHeadFloat32(slice []float32) ([]float32, float32, bool)

RemoveHeadFloat32 删除头

func RemoveHeadFloat64

func RemoveHeadFloat64(slice []float64) ([]float64, float64, bool)

RemoveHeadFloat64 删除头

func RemoveHeadInt

func RemoveHeadInt(slice []int) ([]int, int, bool)

RemoveHeadInt 删除头

func RemoveHeadInt16

func RemoveHeadInt16(slice []int16) ([]int16, int16, bool)

RemoveHeadInt16 删除头

func RemoveHeadInt32

func RemoveHeadInt32(slice []int32) ([]int32, int32, bool)

RemoveHeadInt32 删除头

func RemoveHeadInt64

func RemoveHeadInt64(slice []int64) ([]int64, int64, bool)

RemoveHeadInt64 删除头

func RemoveHeadInt8

func RemoveHeadInt8(slice []int8) ([]int8, int8, bool)

RemoveHeadInt8 删除头

func RemoveHeadString

func RemoveHeadString(slice []string) ([]string, string, bool)

RemoveHeadString 删除头

func RemoveHeadT

func RemoveHeadT(slice []interface{}) ([]interface{}, interface{}, bool)

RemoveHeadT 删除头

func RemoveHeadUint

func RemoveHeadUint(slice []uint) ([]uint, uint, bool)

RemoveHeadUint 删除头

func RemoveHeadUint16

func RemoveHeadUint16(slice []uint16) ([]uint16, uint16, bool)

RemoveHeadUint16 删除头

func RemoveHeadUint32

func RemoveHeadUint32(slice []uint32) ([]uint32, uint32, bool)

RemoveHeadUint32 删除头

func RemoveHeadUint64

func RemoveHeadUint64(slice []uint64) ([]uint64, uint64, bool)

RemoveHeadUint64 删除头

func RemoveHeadUint8

func RemoveHeadUint8(slice []uint8) ([]uint8, uint8, bool)

RemoveHeadUint8 删除头

func RemoveRangeComplex128

func RemoveRangeComplex128(slice []complex128, startPos int, endPos int) (result []complex128, removed []complex128, ok bool)

RemoveRangeComplex128 删除区间

func RemoveRangeComplex64

func RemoveRangeComplex64(slice []complex64, startPos int, endPos int) (result []complex64, removed []complex64, ok bool)

RemoveRangeComplex64 删除区间

func RemoveRangeFloat32

func RemoveRangeFloat32(slice []float32, startPos int, endPos int) (result []float32, removed []float32, ok bool)

RemoveRangeFloat32 删除区间

func RemoveRangeFloat64

func RemoveRangeFloat64(slice []float64, startPos int, endPos int) (result []float64, removed []float64, ok bool)

RemoveRangeFloat64 删除区间

func RemoveRangeInt

func RemoveRangeInt(slice []int, startPos int, endPos int) (result []int, removed []int, ok bool)

RemoveRangeInt 删除区间

func RemoveRangeInt16

func RemoveRangeInt16(slice []int16, startPos int, endPos int) (result []int16, removed []int16, ok bool)

RemoveRangeInt16 删除区间

func RemoveRangeInt32

func RemoveRangeInt32(slice []int32, startPos int, endPos int) (result []int32, removed []int32, ok bool)

RemoveRangeInt32 删除区间

func RemoveRangeInt64

func RemoveRangeInt64(slice []int64, startPos int, endPos int) (result []int64, removed []int64, ok bool)

RemoveRangeInt64 删除区间

func RemoveRangeInt8

func RemoveRangeInt8(slice []int8, startPos int, endPos int) (result []int8, removed []int8, ok bool)

RemoveRangeInt8 删除区间

func RemoveRangeString

func RemoveRangeString(slice []string, startPos int, endPos int) (result []string, removed []string, ok bool)

RemoveRangeString 删除区间

func RemoveRangeT

func RemoveRangeT(slice []interface{}, startPos int, endPos int) (result []interface{}, removed []interface{}, ok bool)

RemoveRangeT 删除区间

func RemoveRangeUint

func RemoveRangeUint(slice []uint, startPos int, endPos int) (result []uint, removed []uint, ok bool)

RemoveRangeUint 删除区间

func RemoveRangeUint16

func RemoveRangeUint16(slice []uint16, startPos int, endPos int) (result []uint16, removed []uint16, ok bool)

RemoveRangeUint16 删除区间

func RemoveRangeUint32

func RemoveRangeUint32(slice []uint32, startPos int, endPos int) (result []uint32, removed []uint32, ok bool)

RemoveRangeUint32 删除区间

func RemoveRangeUint64

func RemoveRangeUint64(slice []uint64, startPos int, endPos int) (result []uint64, removed []uint64, ok bool)

RemoveRangeUint64 删除区间

func RemoveRangeUint8

func RemoveRangeUint8(slice []uint8, startPos int, endPos int) (result []uint8, removed []uint8, ok bool)

RemoveRangeUint8 删除区间

func RemoveTailComplex128

func RemoveTailComplex128(slice []complex128) ([]complex128, complex128, bool)

RemoveTailComplex128 删除尾

func RemoveTailComplex64

func RemoveTailComplex64(slice []complex64) ([]complex64, complex64, bool)

RemoveTailComplex64 删除尾

func RemoveTailFloat32

func RemoveTailFloat32(slice []float32) ([]float32, float32, bool)

RemoveTailFloat32 删除尾

func RemoveTailFloat64

func RemoveTailFloat64(slice []float64) ([]float64, float64, bool)

RemoveTailFloat64 删除尾

func RemoveTailInt

func RemoveTailInt(slice []int) ([]int, int, bool)

RemoveTailInt 删除尾

func RemoveTailInt1

func RemoveTailInt1(slice []int16) ([]int16, int16, bool)

RemoveTailInt1 删除尾

func RemoveTailInt32

func RemoveTailInt32(slice []int32) ([]int32, int32, bool)

RemoveTailInt32 删除尾

func RemoveTailInt64

func RemoveTailInt64(slice []int64) ([]int64, int64, bool)

RemoveTailInt64 删除尾

func RemoveTailInt8

func RemoveTailInt8(slice []int8) ([]int8, int8, bool)

RemoveTailInt8 删除尾

func RemoveTailString

func RemoveTailString(slice []string) ([]string, string, bool)

RemoveTailString 删除尾

func RemoveTailT

func RemoveTailT(slice []interface{}) ([]interface{}, interface{}, bool)

RemoveTailT 删除尾

func RemoveTailUint

func RemoveTailUint(slice []uint) ([]uint, uint, bool)

RemoveTailUint 删除尾

func RemoveTailUint16

func RemoveTailUint16(slice []uint16) ([]uint16, uint16, bool)

RemoveTailUint16 删除尾

func RemoveTailUint32

func RemoveTailUint32(slice []uint32) ([]uint32, uint32, bool)

RemoveTailUint32 删除尾

func RemoveTailUint64

func RemoveTailUint64(slice []uint64) ([]uint64, uint64, bool)

RemoveTailUint64 删除尾

func RemoveTailUint8

func RemoveTailUint8(slice []uint8) ([]uint8, uint8, bool)

RemoveTailUint8 删除尾

func RemoveValueComplex128

func RemoveValueComplex128(slice []complex128, target complex128) ([]complex128, bool)

RemoveValueComplex128 按值删除

func RemoveValueComplex64

func RemoveValueComplex64(slice []complex64, target complex64) ([]complex64, bool)

RemoveValueComplex64 按值删除

func RemoveValueFloat32

func RemoveValueFloat32(slice []float32, target float32) ([]float32, bool)

RemoveValueFloat32 按值删除

func RemoveValueFloat64

func RemoveValueFloat64(slice []float64, target float64) ([]float64, bool)

RemoveValueFloat64 按值删除

func RemoveValueInt

func RemoveValueInt(slice []int, target int) ([]int, bool)

RemoveValueInt 按值删除

func RemoveValueInt16

func RemoveValueInt16(slice []int16, target int16) ([]int16, bool)

RemoveValueInt16 按值删除

func RemoveValueInt32

func RemoveValueInt32(slice []int32, target int32) ([]int32, bool)

RemoveValueInt32 按值删除

func RemoveValueInt64

func RemoveValueInt64(slice []int64, target int64) ([]int64, bool)

RemoveValueInt64 按值删除

func RemoveValueInt8

func RemoveValueInt8(slice []int8, target int8) ([]int8, bool)

RemoveValueInt8 按值删除

func RemoveValueString

func RemoveValueString(slice []string, target string) ([]string, bool)

RemoveValueString 按值删除

func RemoveValueT

func RemoveValueT(slice []interface{}, target interface{}) ([]interface{}, bool)

RemoveValueT 按值删除

func RemoveValueUint

func RemoveValueUint(slice []uint, target uint) ([]uint, bool)

RemoveValueUint 按值删除

func RemoveValueUint16

func RemoveValueUint16(slice []uint16, target uint16) ([]uint16, bool)

RemoveValueUint16 按值删除

func RemoveValueUint32

func RemoveValueUint32(slice []uint32, target uint32) ([]uint32, bool)

RemoveValueUint32 按值删除

func RemoveValueUint64

func RemoveValueUint64(slice []uint64, target uint64) ([]uint64, bool)

RemoveValueUint64 按值删除

func RemoveValueUint8

func RemoveValueUint8(slice []uint8, target uint8) ([]uint8, bool)

RemoveValueUint8 按值删除

func ReverseComplex128

func ReverseComplex128(slice []complex128)

ReverseComplex128 倒序

func ReverseComplex64

func ReverseComplex64(slice []complex64)

ReverseComplex64 倒序

func ReverseFloat32

func ReverseFloat32(slice []float32)

ReverseFloat32 倒序

func ReverseFloat64

func ReverseFloat64(slice []float64)

ReverseFloat64 倒序

func ReverseInt

func ReverseInt(slice []int)

ReverseInt 倒序

func ReverseInt16

func ReverseInt16(slice []int16)

ReverseInt16 倒序

func ReverseInt32

func ReverseInt32(slice []int32)

ReverseInt32 倒序

func ReverseInt64

func ReverseInt64(slice []int64)

ReverseInt64 倒序

func ReverseInt8

func ReverseInt8(slice []int8)

ReverseInt8 倒序

func ReverseString

func ReverseString(slice []string)

ReverseString 倒序

func ReverseT

func ReverseT(slice []interface{})

ReverseT 倒序

func ReverseUint

func ReverseUint(slice []uint)

ReverseUint 倒序

func ReverseUint16

func ReverseUint16(slice []uint16)

ReverseUint16 倒序

func ReverseUint32

func ReverseUint32(slice []uint32)

ReverseUint32 倒序

func ReverseUint64

func ReverseUint64(slice []uint64)

ReverseUint64 倒序

func ReverseUint8

func ReverseUint8(slice []uint8)

ReverseUint8 倒序

func SumFloat32

func SumFloat32(slice []float32) float32

SumFloat32 求和

func SumFloat64

func SumFloat64(slice []float64) float64

SumFloat64 求和

func SumInt

func SumInt(slice []int) int

SumInt 求和

func SumInt16

func SumInt16(slice []int16) int16

SumInt16 求和

func SumInt32

func SumInt32(slice []int32) int32

SumInt32 求和

func SumInt64

func SumInt64(slice []int64) int64

SumInt64 求和

func SumInt8

func SumInt8(slice []int8) int8

SumInt8 求和

func SumUint

func SumUint(slice []uint) uint

SumUint 求和

func SumUint16

func SumUint16(slice []uint16) uint16

SumUint16 求和

func SumUint32

func SumUint32(slice []uint32) uint32

SumUint32 求和

func SumUint64

func SumUint64(slice []uint64) uint64

SumUint64 求和

func SumUint8

func SumUint8(slice []uint8) uint8

SumUint8 求和

func Uint64ToUint

func Uint64ToUint(source []uint64) []uint

func UintToUint64

func UintToUint64(source []uint) []uint64

Types

This section is empty.

Jump to

Keyboard shortcuts

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