setfield!
setfield!(value, name::Symbol, x)
Assign x
to a named field in value
of composite type. The syntax a.b = c
calls setfield!(a, :b, c)
, and the syntax a.(b) = c
calls setfield!(a, b, c)
.
Examples
See Also
User Contributed Notes
Add a Note
The format of note supported is markdown, use triple backtick to start and end a code block.