Name _[_]
Definition `_[_]` : overloaded.
(V:var(sparse_array(T:type))) [ (i:val(int)) ] : var(T) .
Example A[42]:=f(x);
print(A[i+1]);
Defined in sparray.l
Implementation builtin
Infix _[_] : infix(190,none).
Description Select the element of V with index i. If no element of V currently has index i, a new element is created with an undefined value.
See Also sparse_array, init_sparse_array, destroy_sparse_array.