Deprecated: use Value instead.
(index int)
| 188 | |
| 189 | // Deprecated: use Value instead. |
| 190 | func (a *Array) Element(index int) *Value { |
| 191 | return a.Value(index) |
| 192 | } |
| 193 | |
| 194 | // HasValue succeeds if array's value at the given index is equal to given value. |
| 195 | // |