package
2.8.3
Repository: https://github.com/gogf/gf.git
Documentation: pkg.go.dev

# Functions

New creates and returns an empty array.
NewArray is alias of New, please see New.
NewArrayFrom creates and returns an array with given slice `array`.
NewArrayFromCopy creates and returns an array from a copy of given slice `array`.
NewArrayRange creates and returns an array by a range from `start` to `end` with step value `step`.
NewArraySize create and returns an array with given size and cap.
NewFrom is alias of NewArrayFrom.
NewFromCopy is alias of NewArrayFromCopy.
NewIntArray creates and returns an empty array.
NewIntArrayFrom creates and returns an array with given slice `array`.
NewIntArrayFromCopy creates and returns an array from a copy of given slice `array`.
NewIntArrayRange creates and returns an array by a range from `start` to `end` with step value `step`.
NewIntArraySize create and returns an array with given size and cap.
NewSortedArray creates and returns an empty sorted array.
NewSortedArrayFrom creates and returns an sorted array with given slice `array`.
NewSortedArrayFromCopy creates and returns an sorted array from a copy of given slice `array`.
NewSortedArrayRange creates and returns an array by a range from `start` to `end` with step value `step`.
NewSortedArraySize create and returns an sorted array with given size and cap.
NewSortedIntArray creates and returns an empty sorted array.
NewSortedIntArrayComparator creates and returns an empty sorted array with specified comparator.
NewSortedIntArrayFrom creates and returns an sorted array with given slice `array`.
NewSortedIntArrayFromCopy creates and returns an sorted array from a copy of given slice `array`.
NewSortedIntArrayRange creates and returns an array by a range from `start` to `end` with step value `step`.
NewSortedIntArraySize create and returns an sorted array with given size and cap.
NewSortedStrArray creates and returns an empty sorted array.
NewSortedStrArrayComparator creates and returns an empty sorted array with specified comparator.
NewSortedStrArrayFrom creates and returns an sorted array with given slice `array`.
NewSortedStrArrayFromCopy creates and returns an sorted array from a copy of given slice `array`.
NewSortedStrArraySize create and returns an sorted array with given size and cap.
NewStrArray creates and returns an empty array.
NewStrArrayFrom creates and returns an array with given slice `array`.
NewStrArrayFromCopy creates and returns an array from a copy of given slice `array`.
NewStrArraySize create and returns an array with given size and cap.

# Structs

Array is a golang array with rich features.
IntArray is a golang int array with rich features.
SortedArray is a golang sorted array with rich features.
SortedIntArray is a golang sorted int array with rich features.
SortedStrArray is a golang sorted string array with rich features.
StrArray is a golang string array with rich features.