1 package org.simantics.db.impl.query;
3 import gnu.trove.procedure.TIntProcedure;
4 import gnu.trove.set.hash.TIntHashSet;
6 final public class ValueUpdateSet {
9 public TIntHashSet rest = new TIntHashSet();
12 if(first != 0) return 1;
13 else return rest.size();
16 public int getFirst() {
20 public void add(int l) {
28 if(l == first) return;
38 rest = new TIntHashSet();
39 //System.err.println("new rest!");
43 public void forEach(TIntProcedure proc) {