le static method

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

Match records which have tags less than or equals to specified value.

If the path is not defined then it is unmatched.

Implementation

static HFilter le(String path, HVal val) =>
    _Le(Path.parse(path), val);