Function FlatMap.opEquals

Compares the contents of a container with another container, range or null.

bool opEquals(R) (
  scope R rhs
) const nothrow scope
if (isBtlInputRange!R);

bool opEquals(V) (
  auto scope const ref V rhs
) const nothrow scope
if (isVector!V);

bool opEquals(FM) (
  auto scope const ref FM rhs
) const nothrow scope
if (isFlatMap!FM);

Returns true if they are equal, false otherwise

Examples

TODO