Function z3_sys::Z3_mk_and

source ·
pub unsafe extern "C" fn Z3_mk_and(
    c: Z3_context,
    num_args: c_uint,
    args: *const Z3_ast
) -> Z3_ast
Expand description

Create an AST node representing args[0] and ... and args[num_args-1].

The array args must have num_args elements. All arguments must have Boolean sort.

NOTE: The number of arguments must be greater than zero.