ge static method

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

Match records which have tags greater than or equal to specified value.

If the path is not defined then it is unmatched.

Implementation

static HFilter ge(String path, HVal val) =>
    _Ge(Path.parse(path), val);