5526 def update_field(self, field_accessor, new_value):
5527 """Return a new datatype expression with the specified field updated.
5528
5529 Args:
5530 field_accessor: The accessor function declaration for the field to update
5531 new_value: The new value for the field
5532
5533 Returns:
5534 A new datatype expression with the field updated, other fields unchanged
5535
5536 Example:
5537 >>> Person = Datatype('Person')
5538 >>> Person.declare('person', ('name', StringSort()), ('age', IntSort()))
5539 >>> Person = Person.create()
5540 >>> person_age = Person.accessor(0, 1) # age accessor
5541 >>> p = Const('p', Person)
5542 >>> p2 = p.update_field(person_age, IntVal(30))
5543 """
5544 if z3_debug():
5545 _z3_assert(is_func_decl(field_accessor), "Z3 function declaration expected")
5546 _z3_assert(is_expr(new_value), "Z3 expression expected")
5547 return _to_expr_ref(
5549 self.ctx
5550 )
5551
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.