5541 def update_field(self, field_accessor, new_value):
5542 """Return a new datatype expression with the specified field updated.
5543
5544 Args:
5545 field_accessor: The accessor function declaration for the field to update
5546 new_value: The new value for the field
5547
5548 Returns:
5549 A new datatype expression with the field updated, other fields unchanged
5550
5551 Example:
5552 >>> Person = Datatype('Person')
5553 >>> Person.declare('person', ('name', StringSort()), ('age', IntSort()))
5554 >>> Person = Person.create()
5555 >>> person_age = Person.accessor(0, 1) # age accessor
5556 >>> p = Const('p', Person)
5557 >>> p2 = p.update_field(person_age, IntVal(30))
5558 """
5559 if z3_debug():
5560 _z3_assert(is_func_decl(field_accessor), "Z3 function declaration expected")
5561 _z3_assert(is_expr(new_value), "Z3 expression expected")
5562 return _to_expr_ref(
5564 self.ctx
5565 )
5566
Z3_ast Z3_API Z3_datatype_update_field(Z3_context c, Z3_func_decl field_access, Z3_ast t, Z3_ast value)
Update record field with a value.