lt static method

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

Match records which have tags less than the specified value.

If the path is not defined then it is unmatched.

Implementation

static HFilter lt(String path, HVal val) =>
    _Lt(Path.parse(path), val);