Invoke the function. @return the result.
()
| 82 | * @return the result. |
| 83 | */ |
| 84 | public TVMValue invoke() { |
| 85 | Base.RefTVMValue ret = new Base.RefTVMValue(); |
| 86 | Base.checkCall(Base._LIB.tvmFFIFunctionCall(handle, ret)); |
| 87 | return ret.value; |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * Push argument to the function. |
no test coverage detected