You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Note that `System.identityHashCode()` is not unique. Two different values may have the same// identity hash code. If it's important that the values are unique (or if it would be// convenient that they are small in-order values), use// https://plumelib.org/plume-util/api/org/plumelib/util/UniqueId.html .
// Minor: This would be more efficient (and marginally shorter) as:// return CollectionsPlume.filter(// changeSet.contentTupleSet(), contentTuple -> contentTuple.node().equals(tree));returnchangeSet.contentTupleSet().stream()
.filter(contentTuple -> contentTuple.node().equals(tree))
.collect(Collectors.toUnmodifiableSet());
Pair/triple data types
Collection (??) data type
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: