Time returns a time.Time representation.
()
| 190 | |
| 191 | // Time returns a time.Time representation. |
| 192 | func (t Result) Time() time.Time { |
| 193 | res, _ := time.Parse(time.RFC3339, t.String()) |
| 194 | return res |
| 195 | } |
| 196 | |
| 197 | // Array returns back an array of values. |
| 198 | // If the result represents a null value or is non-existent, then an empty |