Docs.rs
eryon-0.0.3
eryon 0.0.3
Permalink
Docs.rs crate page
Apache-2.0
Links
Homepage
Repository
crates.io
Source
Owners
FL03
Dependencies
eryon-actors ^0.0.3
normal
optional
eryon-core ^0.0.3
normal
eryon-mem ^0.0.3
normal
optional
eryon-rt ^0.0.3
normal
optional
anyhow ^1
dev
criterion ^0.6
dev
lazy_static ^1
dev
ndarray ^0.16
dev
num ^0.4
dev
rand ^0.9
dev
rshyper ^0.1.8
dev
rstmt ^0.0.5
dev
scsys ^0.3.0
dev
tracing ^0.1
dev
tracing-subscriber ^0.3
dev
Versions
50%
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
Abs
eryon
0.0.3
Abs
Required Associated Types
Output
Required Methods
abs
Implementations on Foreign Types
&ArrayBase<S, D>
ArrayBase<S, D>
f32
f64
Implementors
In eryon::
actors::
surface::
utils
eryon
::
actors
::
surface
::
utils
Trait
Abs
Copy item path
Source
pub trait Abs { type
Output
; // Required method fn
abs
(self) -> Self::
Output
; }
Required Associated Types
§
Source
type
Output
Required Methods
§
Source
fn
abs
(self) -> Self::
Output
Implementations on Foreign Types
§
Source
§
impl
Abs
for
f32
Source
§
type
Output
=
f32
Source
§
fn
abs
(self) -> <
f32
as
Abs
>::
Output
Source
§
impl
Abs
for
f64
Source
§
type
Output
=
f64
Source
§
fn
abs
(self) -> <
f64
as
Abs
>::
Output
Source
§
impl<A, S, D>
Abs
for &
ArrayBase
<S, D>
where A:
Clone
+
Signed
, D:
Dimension
, S:
Data
<Elem = A>,
Source
§
type
Output
=
ArrayBase
<
OwnedRepr
<A>, D>
Source
§
fn
abs
(self) -> <&
ArrayBase
<S, D> as
Abs
>::
Output
Source
§
impl<A, S, D>
Abs
for
ArrayBase
<S, D>
where A:
Clone
+
Signed
, D:
Dimension
, S:
Data
<Elem = A>,
Source
§
type
Output
=
ArrayBase
<
OwnedRepr
<A>, D>
Source
§
fn
abs
(self) -> <
ArrayBase
<S, D> as
Abs
>::
Output
Implementors
§