eq static method

HFilter eq(
  1. String path,
  2. HVal val
)

Match records which have a tag are equal to the specified value.

If the path is not defined then it is unmatched.

Implementation

static HFilter eq(String path, HVal val) =>
    _Eq(Path.parse(path), val);