package list
import "cuelang.org/go/pkg/list"
Package list contains functions for manipulating and examining lists.
Index ¶
- func Avg(xs []*internal.Decimal) (*internal.Decimal, error)
- func Contains(a []cue.Value, v cue.Value) bool
- func Max(xs []*internal.Decimal) (*internal.Decimal, error)
- func MaxItems(a []cue.Value, n int) bool
- func Min(xs []*internal.Decimal) (*internal.Decimal, error)
- func MinItems(a []cue.Value, n int) bool
- func Product(xs []*internal.Decimal) (*internal.Decimal, error)
- func Sum(xs []*internal.Decimal) (*internal.Decimal, error)
- func UniqueItems(a []cue.Value) bool
Functions ¶
func Avg ¶
Avg returns the average value of a non empty list xs.
func Contains ¶
Contains reports whether v is contained in a. The value must be a comparable value.
func Max ¶
Max returns the maximum value of a non empty list xs.
func MaxItems ¶
MaxItems reports whether a has at most n items.
func Min ¶
Min returns the minimum value of a non empty list xs.
func MinItems ¶
MinItems reports whether a has at least n items.
func Product ¶
Product returns the product of a non empty list xs.
func Sum ¶
Sum returns the sum of a list non empty xs.
func UniqueItems ¶
UniqueItems reports whether all elements in the list are unique.
Source Files ¶
list.go math.go
- Version
- v0.0.9
- Published
- Sep 9, 2019
- Platform
- linux/amd64
- Imports
- 5 packages
- Last checked
- 31 seconds ago –
Tools for package owners.