Atom represents an atom (a predicate symbol applied to base term arguments). e.g: parent(A, B)
| 955 | |
| 956 | // Atom represents an atom (a predicate symbol applied to base term arguments). e.g: parent(A, B) |
| 957 | type Atom struct { |
| 958 | Predicate PredicateSym |
| 959 | Args []BaseTerm |
| 960 | } |
| 961 | |
| 962 | func (a Atom) isTerm() {} |
| 963 |
nothing calls this directly
no outgoing calls
no test coverage detected