Exemple #1
0
 void append(int nstart, int nend) {
   if (nstart<=nend)
     m_list.append(nstart, nend+1);
   else
     m_list.append(nend, nstart+1);
 }
Exemple #2
0
 SelRangesNode(int n1, int n2) { m_list.append(n1,n2+1); }
Exemple #3
0
 void append(int n) { m_list.append(n,n+1); }
Exemple #4
0
 SelRangesNode(int n) { m_list.append(n,n+1); }