MCPcopy Create free account
hub / github.com/go-task/task / Values

Method Values

taskfile/ast/matrix.go:80–85  ·  view source on GitHub ↗

Values returns an iterator that loops over all task values.

()

Source from the content-addressed store, hash-verified

78
79// Values returns an iterator that loops over all task values.
80func (matrix *Matrix) Values() iter.Seq[*MatrixRow] {
81 if matrix == nil || matrix.om == nil {
82 return func(yield func(*MatrixRow) bool) {}
83 }
84 return matrix.om.Values()
85}
86
87func (matrix *Matrix) DeepCopy() *Matrix {
88 if matrix == nil {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected