String returns the string representation of the atom. This method implements the fmt.Stringer interface. Deprecated: Use ToString() instead.
()
| 29 | // This method implements the fmt.Stringer interface. |
| 30 | // Deprecated: Use ToString() instead. |
| 31 | func (a *Atom) String() string { |
| 32 | return a.ToString() |
| 33 | } |
| 34 | |
| 35 | // ToValue returns the value representation of the atom. |
| 36 | func (a *Atom) ToValue() *Value { |