package sliceop
import "go-hep.org/x/hep/sliceop"
Package sliceop provides operations on slices not available in the stdlib slices package.
Index ¶
- func Filter[T any](dst, src []T, f func(v T) bool) []T
- func Find[S ~[]E, E any](dst []int, src S, f func(v E) bool) []int
- func Map[T, U any](dst []U, src []T, f func(v T) U) []U
- func Resize[S ~[]E, E any](sli S, n int) S
- func Take[S ~[]E, E any](dst, src S, indices []int) S
Examples ¶
Functions ¶
func Filter ¶
Filter creates a slice with all the elements x_i of src for which f(x_i) is true. Filter uses dst as work buffer, storing elements at the start of the slice. Filter clears dst if a slice is passed, and allocates a new slice if dst is nil.
func Find ¶
Find creates a slice with all indices corresponding to elements for which f(x) is true. Find uses dst as work buffer, storing indices at the start of the slice. Find clears dst if a slice is passed, and allocates a new slice if dst is nil.
func Map ¶
func Map[T, U any](dst []U, src []T, f func(v T) U) []U
Map creates a slice with all the elements f(x_i) where x_i are elements from src. Map uses dst as work buffer, storing elements at the start of the slice. Map allocates a new slice if dst is nil. Map will panic if the lengths of src and dst differ.
func Resize ¶
Resize returns a slice of size n, reusing the storage of the provided
slice, appending new elements if the capacity is not sufficient.
An example of resizing a slice.
Code:play
Output:Example¶
package main
import (
"fmt"
"go-hep.org/x/hep/sliceop"
)
func main() {
slice := []int{1, 2, 3, 4}
fmt.Printf("slice: len=%d, cap=%d, vs=%v\n", len(slice), cap(slice), slice)
slice = sliceop.Resize(slice, 8)
fmt.Printf("slice: len=%d, cap=%d, vs=%v\n", len(slice), cap(slice), slice)
slice = sliceop.Resize(slice, 3)
fmt.Printf("slice: len=%d, cap=%d, vs=%v\n", len(slice), cap(slice), slice)
}
slice: len=4, cap=4, vs=[1 2 3 4]
slice: len=8, cap=8, vs=[1 2 3 4 0 0 0 0]
slice: len=3, cap=8, vs=[1 2 3]
func Take ¶
Take creates a sub-slice of src with all elements indiced by the provided indices. Take uses dst as work buffer, storing elements at the start of the slice. Take clears dst if a slice is passed, and allocates a new slice if dst is nil. Take will panic if indices is not sorted or has duplicates. Take will panic if length of indices is larger than length of src. Take will panic if length of indices is different from length of dst.
Source Files ¶
sliceop.go
Directories ¶
Path | Synopsis |
---|---|
sliceop/f64s | Package f64s provides common operations on float64 slices. |
- Version
- v0.36.0 (latest)
- Published
- Nov 15, 2024
- Platform
- linux/amd64
- Imports
- 1 packages
- Last checked
- 1 day ago –
Tools for package owners.