Logo

Programming-Idioms

  • Rust
  • Java

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.

b = p.equals(q);
b = p == q;

p and q must be the same type otherwise it will not compile.
#include <algorithm>
bool b = ::std::ranges::equal(p, q);

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