• Check if an attribute is greater than or equal the first value, and less than or equal to the second value (BETWEEN).

    Example

    df.scan('movies', { year: between(1995, 2000) })
    

    Returns

    An object describing the comparison

    Parameters

    • value1: any

      The first value to be compared to

    • value2: any

      The second value to be compared to

    Returns BetweenComparison

Generated using TypeDoc