infix operators, type 2: >=


 >= :
    description:
        ket1 >= ket2
        test whether ket1 is greater or equal than ket2
        if either of the kets are not numbers, then return the empty ket
        if the categories for the kets are different, again, we return the empty ket

    examples:
        |5> >= |8>
            |no>

        |number: 3> >= |number: 1>
            |yes>

        |7> >= |fish>
            |>

        |number: 11> >= |page: 7>
            |>

    see also:
         == , != , > , <= , < 

Home