All Implemented Interfaces:
NamedWriteable, Writeable, TranslationAware, Resolvable, EvaluatorMapper

public class RangeWithin extends EsqlScalarFunction implements TranslationAware
RANGE_WITHIN(value, range) -> boolean Returns true if the first argument is within the second (the range). Supported signatures:
  • (date, date_range): point within range
  • (date_range, date_range): first range within second (first fully contained by second)
(date_range, date) and (date, date) are not supported; they do not match "value within range" semantics.