(int[] x)
| 164 | // appendClass() appends the class |x| to this CharClass. |
| 165 | // It assumes |x| is clean. Does not mutate |x|. |
| 166 | CharClass appendClass(int[] x) { |
| 167 | for (int i = 0; i < x.length; i += 2) { |
| 168 | appendRange(x[i], x[i + 1]); |
| 169 | } |
| 170 | return this; |
| 171 | } |
| 172 | |
| 173 | // appendFoldedClass() appends the case folding of the class |x| to this |
| 174 | // CharClass. Does not mutate |x|. |