(o *Static)
| 866 | } |
| 867 | |
| 868 | func (s Static) NotEquals(o *Static) bool { |
| 869 | if s.Type == TypeNil || o.Type == TypeNil { |
| 870 | return false |
| 871 | } |
| 872 | |
| 873 | return !s.Equals(o) |
| 874 | } |
| 875 | |
| 876 | func (s Static) StrictEquals(o *Static) bool { |
| 877 | if s.Type != o.Type { |