Cloning Method Enumeration
Definition
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.7.0
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.7.0
public enum CloningMethodMembers
| Exact | 0 | Makes an exact clone of the object, including its values, metadata, structural representation, and mutability state. |
| NonzeroElementsWritable | 1 | Makes an independent clone whose stored or structurally represented components are writable while preserving the object's structural representation. |
| AllElementsWritable | 2 | Makes an independent clone such that all logical components are writable. This may require a different structural representation. |
| ShapeOnly | 3 | Makes a copy of the shape and structure of the object but does not copy the values. |