Retrieves the i-th object in the vector. Remarks: May throw an IndexOutOfBoundsException when i is out of range. @param i Index @return An AST @throws Z3Exception
(int i)
| 41 | * @throws Z3Exception |
| 42 | **/ |
| 43 | public AST get(int i) |
| 44 | { |
| 45 | return new AST(getContext(), Native.astVectorGet(getContext().nCtx(), |
| 46 | getNativeObject(), i)); |
| 47 | } |
| 48 | |
| 49 | public void set(int i, AST value) |
| 50 | { |
no test coverage detected