pkgs:
with builtins;
with pkgs.lib;
let
  util = import ./. pkgs;
  inherit (util.op) equal;
in {
  concat = x: y: x + y;

  isEmp = equal "";
}