NewNegAtom is a convenience constructor for NegAtom.
(predicateSym string, args ...BaseTerm)
| 1082 | |
| 1083 | // NewNegAtom is a convenience constructor for NegAtom. |
| 1084 | func NewNegAtom(predicateSym string, args ...BaseTerm) NegAtom { |
| 1085 | return NegAtom{NewAtom(predicateSym, args...)} |
| 1086 | } |
| 1087 | |
| 1088 | // FunctionSym represents a function symbol with a given arity. |
| 1089 | type FunctionSym struct { |