in llresult/results.go [145:156]
func (r Results) Errors() []error {
errors := make([]error, 0)
r.EachResult(func(path llpath.Path, vr ValueResult) bool {
if !vr.Valid {
errors = append(errors, ValueResultError{path, vr})
}
return true
})
return errors
}