Empty reports whether t is the empty interface.
()
| 92 | |
| 93 | // Empty reports whether t is the empty interface. |
| 94 | func (t *Interface) Empty() bool { return t.typeSet().IsAll() } |
| 95 | |
| 96 | // IsComparable reports whether each type in interface t's type set is comparable. |
| 97 | func (t *Interface) IsComparable() bool { return t.typeSet().IsComparable(nil) } |
no test coverage detected