defaultEquals<T> function

bool defaultEquals<T>(
  1. T it1,
  2. T it2
)

default implementation of Equals function

Implementation

bool defaultEquals<T>(T it1, T it2) => it1 == it2;