convert/mutable
convert an expression to a mutable data structure
Calling Sequence
Parameters
Description
Examples
Compatibility
convert(expr, mutable)
expr
-
expression
The convert(expr, mutable) calling sequence converts the expression expr to a mutable object.
The following conversions are performed:
Expressions which are already mutable objects are left as is.
Expressions of type list are converted to Arrays.
Expressions of type set are converted to MutableSets.
Expressions of type string are converted to ByteArrays.
convert⁡2,4,6,mutable
246
MutableSet⁡2,4,6
convert⁡hello,mutable
104101108108111
The convert/mutable command was introduced in Maple 2022.
For more information on Maple 2022 changes, see Updates in Maple 2022.
See Also
convert
MutableSet
rtable
type/mutable
Download Help Document