void append(int nstart, int nend) { if (nstart<=nend) m_list.append(nstart, nend+1); else m_list.append(nend, nstart+1); }
SelRangesNode(int n1, int n2) { m_list.append(n1,n2+1); }
void append(int n) { m_list.append(n,n+1); }
SelRangesNode(int n) { m_list.append(n,n+1); }