Docs.rs
concision-0.3.1
concision 0.3.1
Permalink
Docs.rs crate page
Apache-2.0
Links
Homepage
Repository
crates.io
Source
Owners
FL03
Dependencies
concision-core ^0.3.1
normal
concision-data ^0.3.1
normal
optional
concision-derive ^0.3.1
normal
optional
concision-macros ^0.3.1
normal
optional
anyhow ^1
dev
approx ^0.5
dev
criterion ^0.8
dev
ndarray ^0.17
dev
tracing ^0.1
dev
tracing-subscriber ^0.3
dev
Versions
100%
of the crate is documented
Platform
aarch64-apple-darwin
aarch64-unknown-linux-gnu
i686-pc-windows-msvc
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
SquareRoot
concision
0.3.1
Square
Root
Required Associated Types
Output
Required Methods
sqrt
Implementations on Foreign Types
ArrayBase<S, D>
f32
f64
Implementors
In crate concision
concision
Trait
Square
Root
Copy item path
Source
pub trait SquareRoot { type
Output
; // Required method fn
sqrt
(self) -> Self::
Output
; }
Required Associated Types
§
Source
type
Output
Required Methods
§
Source
fn
sqrt
(self) -> Self::
Output
Implementations on Foreign Types
§
Source
§
impl
SquareRoot
for
f32
Source
§
type
Output
=
f32
Source
§
fn
sqrt
(self) -> <
f32
as
SquareRoot
>::
Output
Source
§
impl
SquareRoot
for
f64
Source
§
type
Output
=
f64
Source
§
fn
sqrt
(self) -> <
f64
as
SquareRoot
>::
Output
Source
§
impl<A, B, S, D>
SquareRoot
for
ArrayBase
<S, D>
where A:
Clone
+
SquareRoot
<Output = B>, D:
Dimension
, S:
Data
<Elem = A>,
Source
§
type
Output
=
ArrayBase
<
OwnedRepr
<B>, D>
Source
§
fn
sqrt
(self) -> <
ArrayBase
<S, D> as
SquareRoot
>::
Output
Implementors
§