3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-03-01 11:16:54 +00:00

Add missing API functions to Go, OCaml, and TypeScript bindings

Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-02-27 02:55:37 +00:00
parent 3f6acc45ed
commit 282db840de
6 changed files with 100 additions and 0 deletions

View file

@ -770,6 +770,12 @@ struct
let mk_store = Z3native.mk_store
let mk_const_array = Z3native.mk_const_array
let mk_select_n ctx a idxs =
Z3native.mk_select_n ctx a (List.length idxs) idxs
let mk_store_n ctx a idxs v =
Z3native.mk_store_n ctx a (List.length idxs) idxs v
let mk_map ctx f args =
Z3native.mk_map ctx f (List.length args) args