Exemplo n.º 1
0
 // Search returns the result of applying SearchFloat64s to the receiver and x.
 public static long Search(this Float64Slice p, double x)
 {
     return(SearchFloat64s(p, x));
 }
Exemplo n.º 2
0
Arquivo: sort.cs Projeto: zjmit/go2cs
 // Sort is a convenience method.
 public static void Sort(this Float64Slice p)
 {
     Sort(p);
 }
Exemplo n.º 3
0
Arquivo: sort.cs Projeto: zjmit/go2cs
 public static bool Less(this Float64Slice p, long i, long j)
 {
     return(p[i] < p[j] || isNaN(p[i]) && !isNaN(p[j]));
 }
Exemplo n.º 4
0
Arquivo: sort.cs Projeto: zjmit/go2cs
 public static void Swap(this Float64Slice p, long i, long j)
 {
     p[i] = p[j];
     p[j] = p[i];
 }
Exemplo n.º 5
0
Arquivo: sort.cs Projeto: zjmit/go2cs
 public static long Len(this Float64Slice p)
 {
     return(len(p));
 }