class Z3::ArrayExpr
Public Instance Methods
Source
# File lib/z3/expr/array_expr.rb, line 17 def select(key) sort.value_sort.new LowLevel.mk_select(self, key_sort.cast(key)) end
Source
# File lib/z3/expr/array_expr.rb, line 13 def store(key, value) sort.new LowLevel.mk_store(self, key_sort.cast(key), value_sort.cast(value)) end