310311312313314315316317318319320
RightTupleList[] tab = table; int index = hashCode & (tab.length - 1); RightTupleList first = tab[index]; RightTupleList e = first; while ( e != null ) { if ( e.matches( object, hashCode ) ) { break; } e = (RightTupleList) e.next; }
348349350351352353354355356357358
int index = hashCode & (tab.length - 1); RightTupleList first = tab[index]; RightTupleList entry = first; while ( entry != null ) { if ( entry.matches( tuple, hashCode , factHandle ) ) { return entry; } entry = (RightTupleList) entry.getNext();
371372373374375376377378379380381
RightTupleList[] tab = table; int index = hashCode & (tab.length - 1); RightTupleList first = tab[index]; RightTupleList e = first; while ( e != null ) { if ( e.matches( object, hashCode ) ) { return e; } e = (RightTupleList) e.next; }