Alternatives

version 2 by Eric Eve

  • Home page
  • Beginning
  • Previous



  • Part 1 - Value Phrases

    To decide whether ( num - value of kind K) is either (num1 - K) or (num2 - K):
    (- ({num} == {num1} or {num2}) -).

    To decide whether ( num - value of kind K) is either (num1 - K) or (num2 - K) or (num3 - K):
    (- ({num} == {num1} or {num2} or {num3}) -).

    To decide whether ( num - value of kind K) is either (num1 - K) or (num2 - K) or (num3 - K) or (num4 - K):
    (- ({num} == {num1} or {num2} or {num3} or {num4}) -).

    To decide whether ( num - value of kind K) is either (num1 - K) or (num2 - K) or (num3 - K) or (num4 - K) or (num5 - K):
    (- ({num} == {num1} or {num2} or {num3} or {num4} or {num5}) -).

    To decide whether ( num - value of kind K) is either (num1 - K) or (num2 - K) or (num3 - K) or (num4 - K) or (num5 - K) or (num6 - K):
    (- ({num} == {num1} or {num2} or {num3} or {num4} or {num5} or {num6}) -).


    To decide whether ( num - value of kind K) is neither (num1 - K) nor (num2 - K):
    (- ({num} ~= {num1} or {num2}) -).

    To decide whether ( num - value of kind K) is neither (num1 - K) nor (num2 - K) nor (num3 - K):
    (- ({num} ~= {num1} or {num2} or {num3}) -).

    To decide whether ( num - value of kind K) is neither (num1 - K) nor (num2 - K) nor (num3 - K) nor (num4 - K):
    (- ({num} ~= {num1} or {num2} or {num3} or {num4}) -).

    To decide whether ( num - value of kind K) is neither (num1 - K) nor (num2 - K) nor (num3 - K) nor (num4 - K) nor (num5 - K):
    (- ({num} ~= {num1} or {num2} or {num3} or {num4} or {num5}) -).

    To decide whether ( num - value of kind K) is neither (num1 - K) nor (num2 - K) nor (num3 - K) nor (num4 - K) nor (num5 - K) nor (num6 - K):
    (- ({num} ~= {num1} or {num2} or {num3} or {num4} or {num5} or {num6}) -).


    Alternatives ends here.