Errors constructs a field that carries a slice of errors.
(key string, errs []error)
| 263 | |
| 264 | // Errors constructs a field that carries a slice of errors. |
| 265 | func Errors(key string, errs []error) Field { |
| 266 | return Array(key, errArray(errs)) |
| 267 | } |
| 268 | |
| 269 | type bools []bool |
| 270 |
searching dependent graphs…