< prev index next >

src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/dom/BitArray.java

Print this page

        

*** 131,141 **** /** * This method returns the Nth bit that is set in the bit array. The * current position is cached in the following 4 variables and will * help speed up a sequence of next() call in an index iterator. This ! * method is a mess, but it is fast and it works, so don't fuck with it. */ private int _pos = Integer.MAX_VALUE; private int _node = 0; private int _int = 0; private int _bit = 0; --- 131,141 ---- /** * This method returns the Nth bit that is set in the bit array. The * current position is cached in the following 4 variables and will * help speed up a sequence of next() call in an index iterator. This ! * method is a mess, but it is fast and it works, so don't change it. */ private int _pos = Integer.MAX_VALUE; private int _node = 0; private int _int = 0; private int _bit = 0;
< prev index next >