compare method

ComparisonResult<T> compare(
  1. Buffer<T> other, {
  2. double epsilon = 1e-10,
})

Compares the buffer to another buffer and returns the result.

Implementation

ComparisonResult<T> compare(Buffer<T> other, {double epsilon = 1e-10}) {
  return ComparisonResult._compare(this, other, epsilon: epsilon);
}