func_entry_get_value method
\brief Return the value of this point.
A \c Z3_func_entry object represents an element in the finite map used to encode a function interpretation.
\sa Z3_func_interp_get_entry
def_API('Z3_func_entry_get_value', AST, (_in(CONTEXT), _in(FUNC_ENTRY)))
Implementation
Z3_ast func_entry_get_value(
Z3_context c,
Z3_func_entry e,
) {
return _func_entry_get_value(
c,
e,
);
}