Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Fortran

Idiom #312 Test for list equality

Set b to true if the lists p and q have the same size and the same elements, false otherwise.

  if (size(p,1) /= size(q,1)) then
    b = false
  else
    b = all (p == q)
  end if

This assumes one-dimensonal arrays a and b. The all intrinsic returns true if the array expression p == q contains only true elements, if all elements are equal.
#include <algorithm>
bool b = ::std::ranges::equal(p, q);

New implementation...
< >
programming-idioms.org