operator: greater-than

    description:
        greater-than[value] ket
        returns the ket if value > the value in ket
        otherwise, return |>
        ie, a value filter

    examples:
        greater-than[5] |7>
            |7>

        greater-than[3] |price: 3.50>
            |price: 3.50>

        greater-than[26] |number: 25>
            |>

        -- if the ket has no float value, then return |>
        greater-than[13] |the cat>
            |>

    see also:
        greater-equal-than, less-than, less-equal-than, equal, in-range
        is-greater-than, is-greater-equal-than, is-less-than, is-less-equal-than, is-equal, is-in-range

Home