pkgs:
let
  equal = a: b: a == b;

  not = b: !b;
in {
  inherit equal not;

  pipeIn = f: a: f a;

  pipeOut = a: f: f a;
}