mk_seq_unit method

Z3_ast mk_seq_unit(
  1. Z3_context c,
  2. Z3_ast a
)

\brief Create a unit sequence of \c a.

def_API('Z3_mk_seq_unit', AST ,(_in(CONTEXT), _in(AST)))

Implementation

Z3_ast mk_seq_unit(
  Z3_context c,
  Z3_ast a,
) {
  return _mk_seq_unit(
    c,
    a,
  );
}