Docs.rs
scors-0.2.3
scors 0.2.3
Docs.rs crate page
MIT
Links
Homepage
Repository
crates.io
Source
Owners
hanslovsky
Dependencies
ndarray ^0.16.1
normal
num ^0.4.3
normal
numpy ^0.23.0
normal
pyo3 ^0.23.5
normal
approx ^0.5.1
dev
Versions
0%
of the crate is documented
Platform
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
_scors
0.2.3
Sortable
Data
Required Methods
argsort_unstable
Implementations on Foreign Types
&[f64]
ArrayView<'_, F, Ix1>
Vec<f64>
[f64; N]
Implementors
In crate _
scors
_scors
Trait
SortableData
Copy item path
Source
pub trait SortableData<T> { // Required method fn
argsort_unstable
(&self) ->
Vec
<
usize
>; }
Required Methods
§
Source
fn
argsort_unstable
(&self) ->
Vec
<
usize
>
Implementations on Foreign Types
§
Source
§
impl
SortableData
<
f64
> for &[
f64
]
Source
§
fn
argsort_unstable
(&self) ->
Vec
<
usize
>
Source
§
impl
SortableData
<
f64
> for
Vec
<
f64
>
Source
§
fn
argsort_unstable
(&self) ->
Vec
<
usize
>
Source
§
impl<F>
SortableData
<F> for
ArrayView
<'_, F,
Ix1
>
where F:
Float
+
TotalOrder
,
Source
§
fn
argsort_unstable
(&self) ->
Vec
<
usize
>
Source
§
impl<const N:
usize
>
SortableData
<
f64
> for [
f64
;
N
]
Source
§
fn
argsort_unstable
(&self) ->
Vec
<
usize
>
Implementors
§