compare method
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);
}
Compares the buffer to another buffer and returns the result.
ComparisonResult<T> compare(Buffer<T> other, {double epsilon = 1e-10}) {
return ComparisonResult._compare(this, other, epsilon: epsilon);
}