Docs.rs
rstsr-openblas-0.5.1
rstsr-openblas 0.5.1
Docs.rs crate page
Apache-2.0
Links
Repository
crates.io
Source
Owners
ajz34
Dependencies
duplicate ^2.0
normal
num ^0.4
normal
rayon ^1.10
normal
rstsr-blas-traits ^0.5.1
normal
rstsr-common ^0.5.1
normal
rstsr-core ^0.5.1
normal
rstsr-dtype-traits ^0.5.1
normal
rstsr-linalg-traits ^0.5.1
normal
optional
rstsr-native-impl ^0.5.1
normal
rstsr-openblas-ffi ^0.5
normal
rstsr-sci-traits ^0.5.1
normal
optional
Versions
4.17%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
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
UnpackArrayAPI
rstsr_
openblas
0.5.1
Unpack
ArrayAPI
Required Associated Types
Output
Required Methods
unpack_array
Implementations on Foreign Types
&'l [[T; N]]
&'l mut [[T; N]]
Implementors
In rstsr_
openblas::
prelude_
dev
rstsr_openblas
::
prelude_dev
Trait
Unpack
ArrayAPI
Copy item path
Source
pub trait UnpackArrayAPI { type
Output
; // Required method fn
unpack_array
(self) -> Self::
Output
; }
Required Associated Types
§
Source
type
Output
Required Methods
§
Source
fn
unpack_array
(self) -> Self::
Output
Implementations on Foreign Types
§
Source
§
impl<'l, T, const N:
usize
>
UnpackArrayAPI
for &'l [
[T; N]
]
Source
§
type
Output
= &'l
[T]
Source
§
fn
unpack_array
(self) -> <&'l [
[T; N]
] as
UnpackArrayAPI
>::
Output
ⓘ
Source
§
impl<'l, T, const N:
usize
>
UnpackArrayAPI
for &'l mut [
[T; N]
]
Source
§
type
Output
= &'l mut
[T]
Source
§
fn
unpack_array
(self) -> <&'l mut [
[T; N]
] as
UnpackArrayAPI
>::
Output
ⓘ
Implementors
§
Source
§
impl<'l, T, const N:
usize
>
UnpackArrayAPI
for
DataCow
<'l,
Vec
<
[T; N]
>>
Source
§
type
Output
=
DataCow
<'l,
Vec
<T>>
Source
§
impl<'l, T, const N:
usize
>
UnpackArrayAPI
for
DataMut
<'l,
Vec
<
[T; N]
>>
Source
§
type
Output
=
DataMut
<'l,
Vec
<T>>
Source
§
impl<'l, T, const N:
usize
>
UnpackArrayAPI
for
DataRef
<'l,
Vec
<
[T; N]
>>
Source
§
type
Output
=
DataRef
<'l,
Vec
<T>>
Source
§
impl<T, const N:
usize
>
UnpackArrayAPI
for
DataOwned
<
Vec
<
[T; N]
>>
Source
§
type
Output
=
DataOwned
<
Vec
<T>>
Source
§
impl<T, const N:
usize
>
UnpackArrayAPI
for
Vec
<
[T; N]
>
Source
§
type
Output
=
Vec
<T>