NONZERO INDEX

NONZERO _ _ _ _ _ _ _ _ _ _ _ _ declaration

syntax:

nonzero<identifier>{,<identifier>}*

If an operator f is declared odd, then f(0) is replaced by zero unless f is also declared non zero by the declaration nonzero.

examples:


        odd f; 

        f(0) 

  0 


        nonzero f; 

        f(0) 

  F(0)