mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-29 13:41:47 +00:00
6b21ad9922
Everywhere including examples, external interop APIs, bindings generators code and in other valuable places. A couple of `interface{}` usages are intentionally left in the CHANGELOG.md, documentation and tests.
6 lines
101 B
Go
6 lines
101 B
Go
package util
|
|
|
|
// Equals is a mirror of `Equals` builtin.
|
|
func Equals(a, b any) bool {
|
|
return true
|
|
}
|