Logo

Programming-Idioms

  • Pascal
  • Go

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.

import "slices"
b := slices.Equal(p, q)

slices.Equal is generic and type-safe at compile time.
classes
  b := (p.count = q.count);
  if b then for i := 0 to p.count-1 do 
    if (p.items[i] <> q.items[i]) then
    begin
      b := false;
      break;
    end;
#include <algorithm>
bool b = ::std::ranges::equal(p, q);

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