Exemple #1
0
 private static bool Less(this byPos a, long i, long j)
 {
     return(a[i].Pos() < a[j].Pos());
 }
Exemple #2
0
 private static void Swap(this byPos a, long i, long j)
 {
     a[i] = a[j];
     a[j] = a[i];
 }
Exemple #3
0
 private static long Len(this byPos a)
 {
     return(len(a));
 }