Negate() public method

public Negate ( QilNode child ) : QilUnary
child QilNode
return QilUnary
 //-----------------------------------------------
 // arithmetic operators
 //-----------------------------------------------
 public QilNode Negate(QilNode child)
 {
     return(_f.Negate(child));
 }