Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

9
LINES

< > BotCompany Repo | #1002051 // stdEq - field-based equals function

JavaX fragment (include)

1  
static boolean stdEq(O a, O b, S... fields) {
2  
  if (a == null) ret b == null;
3  
  if (b == null) ret false;
4  
  if (a.getClass() != b.getClass()) ret false;
5  
  for (S field : fields)
6  
    if (neq(getOpt(a, field), getOpt(b, field)))
7  
      ret false;
8  
  ret true;
9  
}

download  show line numbers  debug dex  old transpilations   

Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1002051
Snippet name: stdEq - field-based equals function
Eternal ID of this version: #1002051/1
Text MD5: 8e2e768dc22e31bb39f7cbfca74c9dd6
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2015-12-16 03:20:43
Source code size: 265 bytes / 9 lines
Pitched / IR pitched: No / Yes
Views / Downloads: 594 / 838
Referenced in: [show references]