Home | History | Annotate | Download | only in collect

Lines Matching defs:cellSet

246         return cellSet().equals(other.cellSet());
252 return cellSet().hashCode();
269 CellSet cellSet;
272 public Set<Cell<C, R, V>> cellSet() {
273 CellSet result = cellSet;
274 return (result == null) ? cellSet = new CellSet() : result;
277 class CellSet extends TransformedCollection<Cell<R, C, V>, Cell<C, R, V>>
281 CellSet() {
282 super(original.cellSet(), (Function) TRANSPOSE_CELL);
306 return original.cellSet().contains(immutableCell(
315 return original.cellSet().remove(immutableCell(
481 class CellSet extends TransformedCollection<Cell<R, C, V1>, Cell<R, C, V2>>
483 CellSet() {
484 super(fromTable.cellSet(), cellFunction());
514 CellSet cellSet;
516 @Override public Set<Cell<R, C, V2>> cellSet() {
517 return (cellSet == null) ? cellSet = new CellSet() : cellSet;
574 return cellSet().equals(other.cellSet());
580 return cellSet().hashCode();
623 public Set<Cell<R, C, V>> cellSet() {
624 return Collections.unmodifiableSet(super.cellSet());