MCPcopy Create free account
hub / github.com/VowpalWabbit/vowpal_wabbit / equals

Method equals

java/src/main/java/vowpalWabbit/responses/PDF.java:30–40  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

28 }
29
30 @Override
31 public boolean equals(Object o) {
32 if (this == o) return true;
33 if (o == null || getClass() != o.getClass()) return false;
34
35 PDF that = (PDF) o;
36
37 // Probably incorrect - comparing Object[] arrays with Arrays.equals
38 return Arrays.equals(pdfSegments, that.pdfSegments);
39
40 }
41
42 @Override
43 public int hashCode() {

Callers 4

test_ccb_and_automlFunction · 0.45
TestCaseMethod · 0.45
getPlatformDirMethod · 0.45

Calls

no outgoing calls

Tested by 3

test_ccb_and_automlFunction · 0.36
TestCaseMethod · 0.36