MCPcopy Index your code
hub / github.com/apache/groovy / equals

Method equals

src/main/java/groovy/lang/SpreadMap.java:104–110  ·  view source on GitHub ↗

{@inheritDoc}

(Object that)

Source from the content-addressed store, hash-verified

102 * {@inheritDoc}
103 */
104 @Override
105 public boolean equals(Object that) {
106 if (that instanceof SpreadMap) {
107 return equals((SpreadMap) that);
108 }
109 return false;
110 }
111
112 /**
113 * Compares this spread map with another spread map using Groovy equality.

Callers

nothing calls this directly

Calls 6

compareEqualMethod · 0.95
sizeMethod · 0.65
getKeyMethod · 0.65
getValueMethod · 0.65
getMethod · 0.65
entrySetMethod · 0.45

Tested by

no test coverage detected