value returns the slice's value
()
| 89 | |
| 90 | // value returns the slice's value |
| 91 | func (s slice) Value() interface{} { |
| 92 | out := make([]interface{}, len(s)) |
| 93 | |
| 94 | for i, v := range s { |
| 95 | out[i] = v.Value() |
| 96 | } |
| 97 | |
| 98 | return out |
| 99 | } |
| 100 | |
| 101 | // String returns a string representation of the slice |
| 102 | func (s slice) String() string { |