// 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)); }
// Sort is a convenience method. public static void Sort(this Float64Slice p) { Sort(p); }
public static bool Less(this Float64Slice p, long i, long j) { return(p[i] < p[j] || isNaN(p[i]) && !isNaN(p[j])); }
public static void Swap(this Float64Slice p, long i, long j) { p[i] = p[j]; p[j] = p[i]; }
public static long Len(this Float64Slice p) { return(len(p)); }