setDart method

  1. @override
float16D setDart(
  1. float16D o
)
override

Copies the fields of o into this instance.

Implementation

@override
float16D setDart(float16D o) {
  v = .from(o.v);
  return this;
}