clone method
Creates a deep copy of the HalfVector, mutations to the original will not affect the copy.
Implementation
HalfVector clone() {
return HalfVector.fromBinary(toBinary());
}
Creates a deep copy of the HalfVector, mutations to the original will not affect the copy.
HalfVector clone() {
return HalfVector.fromBinary(toBinary());
}