Hash returns a hash code.
()
| 923 | |
| 924 | // Hash returns a hash code. |
| 925 | func (v Variable) Hash() uint64 { |
| 926 | return hashTerm(v.Symbol, []BaseTerm{v}) |
| 927 | } |
| 928 | |
| 929 | // String simply returns the variable's name. |
| 930 | func (v Variable) String() string { |
nothing calls this directly
no test coverage detected