Beispiel #1
0
 private static void Swap(this byDate f, long i, long j)
 {
     f[i] = f[j];
     f[j] = f[i];
 }
Beispiel #2
0
 private static bool Less(this byDate f, long i, long j)
 {
     return(f[i].date < f[j].date);
 }
Beispiel #3
0
 private static long Len(this byDate f)
 {
     return(len(f));
 }