|
|
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="API documentation for the Rust `AbsDiffEq` trait in crate `cgmath`."><meta name="keywords" content="rust, rustlang, rust-lang, AbsDiffEq"><title>cgmath::AbsDiffEq - Rust</title><link rel="stylesheet" type="text/css" href="../normalize.css"><link rel="stylesheet" type="text/css" href="../rustdoc.css" id="mainThemeStyle"><link rel="stylesheet" type="text/css" href="../dark.css"><link rel="stylesheet" type="text/css" href="../light.css" id="themeStyle"><script src="../storage.js"></script><noscript><link rel="stylesheet" href="../noscript.css"></noscript><link rel="shortcut icon" href="../favicon.ico"><style type="text/css">#crate-search{background-image:url("../down-arrow.svg");}</style></head><body class="rustdoc trait"><!--[if lte IE 8]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="sidebar"><div class="sidebar-menu">☰</div><a href='../cgmath/index.html'><div class='logo-container'><img src='../rust-logo.png' alt='logo'></div></a><p class='location'>Trait AbsDiffEq</p><div class="sidebar-elems"><div class="block items"><a class="sidebar-title" href="#associated-types">Associated Types</a><div class="sidebar-links"><a href="#associatedtype.Epsilon">Epsilon</a></div><a class="sidebar-title" href="#required-methods">Required Methods</a><div class="sidebar-links"><a href="#tymethod.abs_diff_eq">abs_diff_eq</a><a href="#tymethod.default_epsilon">default_epsilon</a></div><a class="sidebar-title" href="#provided-methods">Provided Methods</a><div class="sidebar-links"><a href="#method.abs_diff_ne">abs_diff_ne</a></div><a class="sidebar-title" href="#foreign-impls">Implementations on Foreign Types</a><div class="sidebar-links"><a href="#impl-AbsDiffEq%3C%26%27a%20T%3E-for-%26%27a%20T">&'a T</a><a href="#impl-AbsDiffEq%3C%26%27a%20mut%20T%3E-for-%26%27a%20mut%20T">&'a mut T</a><a href="#impl-AbsDiffEq%3C%5BB%5D%3E-for-%5BA%5D">[A]</a><a href="#impl-AbsDiffEq%3CCell%3CT%3E%3E-for-Cell%3CT%3E">Cell<T></a><a href="#impl-AbsDiffEq%3CRefCell%3CT%3E%3E-for-RefCell%3CT%3E">RefCell<T></a><a href="#impl-AbsDiffEq%3Cf32%3E-for-f32">f32</a><a href="#impl-AbsDiffEq%3Cf64%3E-for-f64">f64</a><a href="#impl-AbsDiffEq%3Ci16%3E-for-i16">i16</a><a href="#impl-AbsDiffEq%3Ci32%3E-for-i32">i32</a><a href="#impl-AbsDiffEq%3Ci64%3E-for-i64">i64</a><a href="#impl-AbsDiffEq%3Ci8%3E-for-i8">i8</a><a href="#impl-AbsDiffEq%3Cisize%3E-for-isize">isize</a><a href="#impl-AbsDiffEq%3Cu16%3E-for-u16">u16</a><a href="#impl-AbsDiffEq%3Cu32%3E-for-u32">u32</a><a href="#impl-AbsDiffEq%3Cu64%3E-for-u64">u64</a><a href="#impl-AbsDiffEq%3Cu8%3E-for-u8">u8</a><a href="#impl-AbsDiffEq%3Cusize%3E-for-usize">usize</a></div><a class="sidebar-title" href="#implementors">Implementors</a></div><p class='location'><a href='index.html'>cgmath</a></p><script>window.sidebarCurrent = {name: 'AbsDiffEq', ty: 'trait', relpath: ''};</script><script defer src="sidebar-items.js"></script></div></nav><div class="theme-picker"><button id="theme-picker" aria-label="Pick another theme!"><img src="../brush.svg" width="18" alt="Pick another theme!"></button><div id="theme-choices"></div></div><script src="../theme.js"></script><nav class="sub"><form class="search-form js-only"><div class="search-container"><div><select id="crate-search"><option value="All crates">All crates</option></select><input class="search-input" name="search" autocomplete="off" spellcheck="false" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"></div><a id="settings-menu" href="../settings.html"><img src="../wheel.svg" width="18" alt="Change settings"></a></div></form></nav><section id="main" class="content"><h1 class='fqn'><span class='out-of-band'><span id='render-detail'><a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">[<span class='inner'>−</span>]</a></span><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#8-29' title='goto source code'>[src]</a></span><span class='in-band'>Trait <a href='index.html'>cgmath</a>::<wbr><a class="trait" href=''>AbsDiffEq</a></span></h1><div class="docblock type-decl hidden-by-usual-hider"><pre class='rust trait'>pub trait AbsDiffEq<Rhs = Self>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html" title="trait core::cmp::PartialEq">PartialEq</a><Rhs> <span class="where fmt-newline">where<br> Rhs: ?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>, </span>{
|
|
|
type <a href='#associatedtype.Epsilon' class="type">Epsilon</a>;
|
|
|
fn <a href='#tymethod.default_epsilon' class='fnname'>default_epsilon</a>() -> Self::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a>;
|
|
|
<div class='item-spacer'></div> fn <a href='#tymethod.abs_diff_eq' class='fnname'>abs_diff_eq</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Rhs, epsilon: Self::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>;
|
|
|
|
|
|
fn <a href='#method.abs_diff_ne' class='fnname'>abs_diff_ne</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Rhs, epsilon: Self::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a> { ... }
|
|
|
}</pre></div><div class='docblock'><p>Equality that is defined using the absolute difference of two numbers.</p>
|
|
|
</div>
|
|
|
<h2 id='associated-types' class='small-section-header'>Associated Types<a href='#associated-types' class='anchor'></a></h2><div class='methods'><h3 id='associatedtype.Epsilon' class='method'><code id='Epsilon.t'>type <a href='#associatedtype.Epsilon' class="type">Epsilon</a></code></h3><div class='docblock'><p>Used for specifying relative comparisons.</p>
|
|
|
</div></div><span class='loading-content'>Loading content...</span>
|
|
|
<h2 id='required-methods' class='small-section-header'>Required methods<a href='#required-methods' class='anchor'></a></h2><div class='methods'><h3 id='tymethod.default_epsilon' class='method'><code id='default_epsilon.v'>fn <a href='#tymethod.default_epsilon' class='fnname'>default_epsilon</a>() -> Self::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code></h3><div class='docblock'><p>The default tolerance to use when testing values that are close together.</p>
|
|
|
<p>This is used when no <code>epsilon</code> value is supplied to the <code>abs_diff_eq!</code>, <code>relative_eq!</code>, or
|
|
|
<code>ulps_eq!</code> macros.</p>
|
|
|
</div><h3 id='tymethod.abs_diff_eq' class='method'><code id='abs_diff_eq.v'>fn <a href='#tymethod.abs_diff_eq' class='fnname'>abs_diff_eq</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Rhs, epsilon: Self::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></h3><div class='docblock'><p>A test for equality that uses the absolute difference to compute the approximate
|
|
|
equality of two numbers.</p>
|
|
|
</div></div><span class='loading-content'>Loading content...</span>
|
|
|
<h2 id='provided-methods' class='small-section-header'>Provided methods<a href='#provided-methods' class='anchor'></a></h2><div class='methods'><h3 id='method.abs_diff_ne' class='method'><code id='abs_diff_ne.v'>fn <a href='#method.abs_diff_ne' class='fnname'>abs_diff_ne</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Rhs, epsilon: Self::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></h3><div class='docblock'><p>The inverse of <code>ApproxEq::abs_diff_eq</code>.</p>
|
|
|
</div></div><span class='loading-content'>Loading content...</span>
|
|
|
<h2 id='foreign-impls' class='small-section-header'>Implementations on Foreign Types<a href='#foreign-impls' class='anchor'></a></h2><h3 id='impl-AbsDiffEq%3Cusize%3E-for-usize' class='impl'><code class='in-band'>impl <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a href='#impl-AbsDiffEq%3Cusize%3E-for-usize' class='anchor'></a><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#37-53' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-1' class="type"><code id='Epsilon.t-1'>type <a href='#associatedtype.Epsilon' class="type">Epsilon</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code></h4><h4 id='method.default_epsilon' class="method hidden"><code id='default_epsilon.v-1'>fn <a href='#method.default_epsilon' class='fnname'>default_epsilon</a>() -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#41-43' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq' class="method hidden"><code id='abs_diff_eq.v-1'>fn <a href='#method.abs_diff_eq' class='fnname'>abs_diff_eq</a>(&self, other: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>, epsilon: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#46-52' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3Ci16%3E-for-i16' class='impl'><code class='in-band'>impl <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a>> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a></code><a href='#impl-AbsDiffEq%3Ci16%3E-for-i16' class='anchor'></a><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#65-77' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-2' class="type"><code id='Epsilon.t-2'>type <a href='#associatedtype.Epsilon' class="type">Epsilon</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a></code></h4><h4 id='method.default_epsilon-1' class="method hidden"><code id='default_epsilon.v-2'>fn <a href='#method.default_epsilon' class='fnname'>default_epsilon</a>() -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#69-71' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-1' class="method hidden"><code id='abs_diff_eq.v-2'>fn <a href='#method.abs_diff_eq' class='fnname'>abs_diff_eq</a>(&self, other: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a>, epsilon: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#74-76' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3Ci32%3E-for-i32' class='impl'><code class='in-band'>impl <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a></code><a href='#impl-AbsDiffEq%3Ci32%3E-for-i32' class='anchor'></a><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#65-77' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-3' class="type"><code id='Epsilon.t-3'>type <a href='#associatedtype.Epsilon' class="type">Epsilon</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a></code></h4><h4 id='method.default_epsilon-2' class="method hidden"><code id='default_epsilon.v-3'>fn <a href='#method.default_epsilon' class='fnname'>default_epsilon</a>() -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#69-71' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-2' class="method hidden"><code id='abs_diff_eq.v-3'>fn <a href='#method.abs_diff_eq' class='fnname'>abs_diff_eq</a>(&self, other: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, epsilon: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#74-76' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3CCell%3CT%3E%3E-for-Cell%3CT%3E' class='impl'><code class='in-band'>impl<T> <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><<a class="struct" href="https://doc.rust-lang.org/nightly/core/cell/struct.Cell.html" title="struct core::cell::Cell">Cell</a><T>> for <a class="struct" href="https://doc.rust-lang.org/nightly/core/cell/struct.Cell.html" title="struct core::cell::Cell">Cell</a><T> <span class="where fmt-newline">where<br> T: <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><T> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>, </span></code><a href='#impl-AbsDiffEq%3CCell%3CT%3E%3E-for-Cell%3CT%3E' class='anchor'></a><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#121-133' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-4' class="type"><code id='Epsilon.t-4'>type <a href='#associatedtype.Epsilon' class="type">Epsilon</a> = <T as <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><T>>::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code></h4><h4 id='method.default_epsilon-3' class="method hidden"><code id='default_epsilon.v-4'>fn <a href='#method.default_epsilon' class='fnname'>default_epsilon</a>() -> <T as <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><T>>::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#125-127' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-3' class="method hidden"><code id='abs_diff_eq.v-4'>fn <a href='#method.abs_diff_eq' class='fnname'>abs_diff_eq</a>(<br> &self, <br> other: &<a class="struct" href="https://doc.rust-lang.org/nightly/core/cell/struct.Cell.html" title="struct core::cell::Cell">Cell</a><T>, <br> epsilon: <T as <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><T>>::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a><br>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#130-132' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3Cf64%3E-for-f64' class='impl'><code class='in-band'>impl <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f64.html">f64</a>> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f64.html">f64</a></code><a href='#impl-AbsDiffEq%3Cf64%3E-for-f64' class='anchor'></a><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#65-77' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-5' class="type"><code id='Epsilon.t-5'>type <a href='#associatedtype.Epsilon' class="type">Epsilon</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f64.html">f64</a></code></h4><h4 id='method.default_epsilon-4' class="method hidden"><code id='default_epsilon.v-5'>fn <a href='#method.default_epsilon' class='fnname'>default_epsilon</a>() -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f64.html">f64</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#69-71' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-4' class="method hidden"><code id='abs_diff_eq.v-5'>fn <a href='#method.abs_diff_eq' class='fnname'>abs_diff_eq</a>(&self, other: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f64.html">f64</a>, epsilon: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f64.html">f64</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#74-76' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3Cu64%3E-for-u64' class='impl'><code class='in-band'>impl <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code><a href='#impl-AbsDiffEq%3Cu64%3E-for-u64' class='anchor'></a><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#37-53' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-6' class="type"><code id='Epsilon.t-6'>type <a href='#associatedtype.Epsilon' class="type">Epsilon</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code></h4><h4 id='method.default_epsilon-5' class="method hidden"><code id='default_epsilon.v-6'>fn <a href='#method.default_epsilon' class='fnname'>default_epsilon</a>() -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#41-43' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-5' class="method hidden"><code id='abs_diff_eq.v-6'>fn <a href='#method.abs_diff_eq' class='fnname'>abs_diff_eq</a>(&self, other: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>, epsilon: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#46-52' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3CRefCell%3CT%3E%3E-for-RefCell%3CT%3E' class='impl'><code class='in-band'>impl<T> <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><<a class="struct" href="https://doc.rust-lang.org/nightly/core/cell/struct.RefCell.html" title="struct core::cell::RefCell">RefCell</a><T>> for <a class="struct" href="https://doc.rust-lang.org/nightly/core/cell/struct.RefCell.html" title="struct core::cell::RefCell">RefCell</a><T> <span class="where fmt-newline">where<br> T: <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><T> + ?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>, </span></code><a href='#impl-AbsDiffEq%3CRefCell%3CT%3E%3E-for-RefCell%3CT%3E' class='anchor'></a><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#135-147' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-7' class="type"><code id='Epsilon.t-7'>type <a href='#associatedtype.Epsilon' class="type">Epsilon</a> = <T as <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><T>>::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code></h4><h4 id='method.default_epsilon-6' class="method hidden"><code id='default_epsilon.v-7'>fn <a href='#method.default_epsilon' class='fnname'>default_epsilon</a>() -> <T as <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><T>>::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#139-141' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-6' class="method hidden"><code id='abs_diff_eq.v-7'>fn <a href='#method.abs_diff_eq' class='fnname'>abs_diff_eq</a>(<br> &self, <br> other: &<a class="struct" href="https://doc.rust-lang.org/nightly/core/cell/struct.RefCell.html" title="struct core::cell::RefCell">RefCell</a><T>, <br> epsilon: <T as <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><T>>::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a><br>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#144-146' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3Cf32%3E-for-f32' class='impl'><code class='in-band'>impl <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f32.html">f32</a>> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f32.html">f32</a></code><a href='#impl-AbsDiffEq%3Cf32%3E-for-f32' class='anchor'></a><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#65-77' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-8' class="type"><code id='Epsilon.t-8'>type <a href='#associatedtype.Epsilon' class="type">Epsilon</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f32.html">f32</a></code></h4><h4 id='method.default_epsilon-7' class="method hidden"><code id='default_epsilon.v-8'>fn <a href='#method.default_epsilon' class='fnname'>default_epsilon</a>() -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f32.html">f32</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#69-71' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-7' class="method hidden"><code id='abs_diff_eq.v-8'>fn <a href='#method.abs_diff_eq' class='fnname'>abs_diff_eq</a>(&self, other: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f32.html">f32</a>, epsilon: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f32.html">f32</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#74-76' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3Cu32%3E-for-u32' class='impl'><code class='in-band'>impl <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a href='#impl-AbsDiffEq%3Cu32%3E-for-u32' class='anchor'></a><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#37-53' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-9' class="type"><code id='Epsilon.t-9'>type <a href='#associatedtype.Epsilon' class="type">Epsilon</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code></h4><h4 id='method.default_epsilon-8' class="method hidden"><code id='default_epsilon.v-9'>fn <a href='#method.default_epsilon' class='fnname'>default_epsilon</a>() -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#41-43' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-8' class="method hidden"><code id='abs_diff_eq.v-9'>fn <a href='#method.abs_diff_eq' class='fnname'>abs_diff_eq</a>(&self, other: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, epsilon: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#46-52' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3C%26%27a%20T%3E-for-%26%27a%20T' class='impl'><code class='in-band'>impl<'a, T> <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&'a </a>T> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&'a </a>T <span class="where fmt-newline">where<br> T: <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><T> + ?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>, </span></code><a href='#impl-AbsDiffEq%3C%26%27a%20T%3E-for-%26%27a%20T' class='anchor'></a><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#93-105' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-10' class="type"><code id='Epsilon.t-10'>type <a href='#associatedtype.Epsilon' class="type">Epsilon</a> = <T as <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><T>>::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code></h4><h4 id='method.default_epsilon-9' class="method hidden"><code id='default_epsilon.v-10'>fn <a href='#method.default_epsilon' class='fnname'>default_epsilon</a>() -> <T as <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><T>>::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#97-99' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-9' class="method hidden"><code id='abs_diff_eq.v-10'>fn <a href='#method.abs_diff_eq' class='fnname'>abs_diff_eq</a>(<br> &self, <br> other: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&'a </a>T, <br> epsilon: <T as <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><T>>::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a><br>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#102-104' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3Ci64%3E-for-i64' class='impl'><code class='in-band'>impl <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a></code><a href='#impl-AbsDiffEq%3Ci64%3E-for-i64' class='anchor'></a><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#65-77' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-11' class="type"><code id='Epsilon.t-11'>type <a href='#associatedtype.Epsilon' class="type">Epsilon</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a></code></h4><h4 id='method.default_epsilon-10' class="method hidden"><code id='default_epsilon.v-11'>fn <a href='#method.default_epsilon' class='fnname'>default_epsilon</a>() -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#69-71' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-10' class="method hidden"><code id='abs_diff_eq.v-11'>fn <a href='#method.abs_diff_eq' class='fnname'>abs_diff_eq</a>(&self, other: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>, epsilon: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#74-76' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3Cu8%3E-for-u8' class='impl'><code class='in-band'>impl <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code><a href='#impl-AbsDiffEq%3Cu8%3E-for-u8' class='anchor'></a><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#37-53' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-12' class="type"><code id='Epsilon.t-12'>type <a href='#associatedtype.Epsilon' class="type">Epsilon</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code></h4><h4 id='method.default_epsilon-11' class="method hidden"><code id='default_epsilon.v-12'>fn <a href='#method.default_epsilon' class='fnname'>default_epsilon</a>() -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#41-43' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-11' class="method hidden"><code id='abs_diff_eq.v-12'>fn <a href='#method.abs_diff_eq' class='fnname'>abs_diff_eq</a>(&self, other: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>, epsilon: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#46-52' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3C%26%27a%20mut%20T%3E-for-%26%27a%20mut%20T' class='impl'><code class='in-band'>impl<'a, T> <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&'a mut </a>T> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&'a mut </a>T <span class="where fmt-newline">where<br> T: <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><T> + ?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>, </span></code><a href='#impl-AbsDiffEq%3C%26%27a%20mut%20T%3E-for-%26%27a%20mut%20T' class='anchor'></a><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#107-119' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-13' class="type"><code id='Epsilon.t-13'>type <a href='#associatedtype.Epsilon' class="type">Epsilon</a> = <T as <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><T>>::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code></h4><h4 id='method.default_epsilon-12' class="method hidden"><code id='default_epsilon.v-13'>fn <a href='#method.default_epsilon' class='fnname'>default_epsilon</a>() -> <T as <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><T>>::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#111-113' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-12' class="method hidden"><code id='abs_diff_eq.v-13'>fn <a href='#method.abs_diff_eq' class='fnname'>abs_diff_eq</a>(<br> &self, <br> other: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&'a mut </a>T, <br> epsilon: <T as <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><T>>::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a><br>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#116-118' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3C%5BB%5D%3E-for-%5BA%5D' class='impl'><code class='in-band'>impl<A, B> <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">[</a>B<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">]</a>> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">[</a>A<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">]</a> <span class="where fmt-newline">where<br> A: <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><B>,<br> <A as <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><B>>::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>, </span></code><a href='#impl-AbsDiffEq%3C%5BB%5D%3E-for-%5BA%5D' class='anchor'></a><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#149-166' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-14' class="type"><code id='Epsilon.t-14'>type <a href='#associatedtype.Epsilon' class="type">Epsilon</a> = <A as <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><B>>::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code></h4><h4 id='method.default_epsilon-13' class="method hidden"><code id='default_epsilon.v-14'>fn <a href='#method.default_epsilon' class='fnname'>default_epsilon</a>() -> <A as <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><B>>::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#157-159' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-13' class="method hidden"><code id='abs_diff_eq.v-14'>fn <a href='#method.abs_diff_eq' class='fnname'>abs_diff_eq</a>(<br> &self, <br> other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&[B]</a>, <br> epsilon: <A as <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><B>>::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a><br>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#162-165' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3Ci8%3E-for-i8' class='impl'><code class='in-band'>impl <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a>> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a></code><a href='#impl-AbsDiffEq%3Ci8%3E-for-i8' class='anchor'></a><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#65-77' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-15' class="type"><code id='Epsilon.t-15'>type <a href='#associatedtype.Epsilon' class="type">Epsilon</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a></code></h4><h4 id='method.default_epsilon-14' class="method hidden"><code id='default_epsilon.v-15'>fn <a href='#method.default_epsilon' class='fnname'>default_epsilon</a>() -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#69-71' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-14' class="method hidden"><code id='abs_diff_eq.v-15'>fn <a href='#method.abs_diff_eq' class='fnname'>abs_diff_eq</a>(&self, other: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a>, epsilon: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#74-76' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3Cisize%3E-for-isize' class='impl'><code class='in-band'>impl <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a>> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a></code><a href='#impl-AbsDiffEq%3Cisize%3E-for-isize' class='anchor'></a><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#65-77' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-16' class="type"><code id='Epsilon.t-16'>type <a href='#associatedtype.Epsilon' class="type">Epsilon</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a></code></h4><h4 id='method.default_epsilon-15' class="method hidden"><code id='default_epsilon.v-16'>fn <a href='#method.default_epsilon' class='fnname'>default_epsilon</a>() -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#69-71' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-15' class="method hidden"><code id='abs_diff_eq.v-16'>fn <a href='#method.abs_diff_eq' class='fnname'>abs_diff_eq</a>(&self, other: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a>, epsilon: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#74-76' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3Cu16%3E-for-u16' class='impl'><code class='in-band'>impl <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code><a href='#impl-AbsDiffEq%3Cu16%3E-for-u16' class='anchor'></a><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#37-53' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-17' class="type"><code id='Epsilon.t-17'>type <a href='#associatedtype.Epsilon' class="type">Epsilon</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code></h4><h4 id='method.default_epsilon-16' class="method hidden"><code id='default_epsilon.v-17'>fn <a href='#method.default_epsilon' class='fnname'>default_epsilon</a>() -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#41-43' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-16' class="method hidden"><code id='abs_diff_eq.v-17'>fn <a href='#method.abs_diff_eq' class='fnname'>abs_diff_eq</a>(&self, other: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>, epsilon: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/approx/abs_diff_eq.rs.html#46-52' title='goto source code'>[src]</a></h4></div><span class='loading-content'>Loading content...</span>
|
|
|
<h2 id='implementors' class='small-section-header'>Implementors<a href='#implementors' class='anchor'></a></h2><div class='item-list' id='implementors-list'><h3 id='impl-AbsDiffEq%3CEuler%3CA%3E%3E' class='impl'><code class='in-band'>impl<A: <a class="trait" href="../cgmath/prelude/trait.Angle.html" title="trait cgmath::prelude::Angle">Angle</a>> AbsDiffEq<<a class="struct" href="../cgmath/struct.Euler.html" title="struct cgmath::Euler">Euler</a><A>> for <a class="struct" href="../cgmath/struct.Euler.html" title="struct cgmath::Euler">Euler</a><A></code><a href='#impl-AbsDiffEq%3CEuler%3CA%3E%3E' class='anchor'></a><a class='srclink' href='../src/cgmath/euler.rs.html#145-159' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-18' class="type"><code id='Epsilon.t-18'>type <a href='#associatedtype.Epsilon-18' class="type">Epsilon</a> = A::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code></h4><h4 id='method.default_epsilon-17' class="method hidden"><code id='default_epsilon.v-18'>fn <a href='#method.default_epsilon-17' class='fnname'>default_epsilon</a>() -> A::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code><a class='srclink' href='../src/cgmath/euler.rs.html#149-151' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-17' class="method hidden"><code id='abs_diff_eq.v-18'>fn <a href='#method.abs_diff_eq-17' class='fnname'>abs_diff_eq</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self, epsilon: A::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/cgmath/euler.rs.html#154-158' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3CDecomposed%3CS%2C%20R%3E%3E' class='impl'><code class='in-band'>impl<S: <a class="trait" href="../cgmath/prelude/trait.VectorSpace.html" title="trait cgmath::prelude::VectorSpace">VectorSpace</a>, R, E: <a class="trait" href="../cgmath/trait.BaseFloat.html" title="trait cgmath::BaseFloat">BaseFloat</a>> AbsDiffEq<<a class="struct" href="../cgmath/struct.Decomposed.html" title="struct cgmath::Decomposed">Decomposed</a><S, R>> for <a class="struct" href="../cgmath/struct.Decomposed.html" title="struct cgmath::Decomposed">Decomposed</a><S, R> <span class="where fmt-newline">where<br> S: <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><Epsilon = E>,<br> S::<a class="type" href="../cgmath/prelude/trait.VectorSpace.html#associatedtype.Scalar" title="type cgmath::prelude::VectorSpace::Scalar">Scalar</a>: <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><Epsilon = E>,<br> R: <a class="trait" href="../cgmath/trait.AbsDiffEq.html" title="trait cgmath::AbsDiffEq">AbsDiffEq</a><Epsilon = E>, </span></code><a href='#impl-AbsDiffEq%3CDecomposed%3CS%2C%20R%3E%3E' class='anchor'></a><a class='srclink' href='../src/cgmath/transform.rs.html#166-185' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-19' class="type"><code id='Epsilon.t-19'>type <a href='#associatedtype.Epsilon-19' class="type">Epsilon</a> = E</code></h4><h4 id='method.default_epsilon-18' class="method hidden"><code id='default_epsilon.v-19'>fn <a href='#method.default_epsilon-18' class='fnname'>default_epsilon</a>() -> E</code><a class='srclink' href='../src/cgmath/transform.rs.html#175-177' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-18' class="method hidden"><code id='abs_diff_eq.v-19'>fn <a href='#method.abs_diff_eq-18' class='fnname'>abs_diff_eq</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self, epsilon: E) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/cgmath/transform.rs.html#180-184' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3CBasis2%3CS%3E%3E' class='impl'><code class='in-band'>impl<S: <a class="trait" href="../cgmath/trait.BaseFloat.html" title="trait cgmath::BaseFloat">BaseFloat</a>> AbsDiffEq<<a class="struct" href="../cgmath/struct.Basis2.html" title="struct cgmath::Basis2">Basis2</a><S>> for <a class="struct" href="../cgmath/struct.Basis2.html" title="struct cgmath::Basis2">Basis2</a><S></code><a href='#impl-AbsDiffEq%3CBasis2%3CS%3E%3E' class='anchor'></a><a class='srclink' href='../src/cgmath/rotation.rs.html#218-230' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-20' class="type"><code id='Epsilon.t-20'>type <a href='#associatedtype.Epsilon-20' class="type">Epsilon</a> = S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code></h4><h4 id='method.default_epsilon-19' class="method hidden"><code id='default_epsilon.v-20'>fn <a href='#method.default_epsilon-19' class='fnname'>default_epsilon</a>() -> S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code><a class='srclink' href='../src/cgmath/rotation.rs.html#222-224' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-19' class="method hidden"><code id='abs_diff_eq.v-20'>fn <a href='#method.abs_diff_eq-19' class='fnname'>abs_diff_eq</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self, epsilon: S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/cgmath/rotation.rs.html#227-229' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3CBasis3%3CS%3E%3E' class='impl'><code class='in-band'>impl<S: <a class="trait" href="../cgmath/trait.BaseFloat.html" title="trait cgmath::BaseFloat">BaseFloat</a>> AbsDiffEq<<a class="struct" href="../cgmath/struct.Basis3.html" title="struct cgmath::Basis3">Basis3</a><S>> for <a class="struct" href="../cgmath/struct.Basis3.html" title="struct cgmath::Basis3">Basis3</a><S></code><a href='#impl-AbsDiffEq%3CBasis3%3CS%3E%3E' class='anchor'></a><a class='srclink' href='../src/cgmath/rotation.rs.html#370-382' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-21' class="type"><code id='Epsilon.t-21'>type <a href='#associatedtype.Epsilon-21' class="type">Epsilon</a> = S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code></h4><h4 id='method.default_epsilon-20' class="method hidden"><code id='default_epsilon.v-21'>fn <a href='#method.default_epsilon-20' class='fnname'>default_epsilon</a>() -> S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code><a class='srclink' href='../src/cgmath/rotation.rs.html#374-376' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-20' class="method hidden"><code id='abs_diff_eq.v-21'>fn <a href='#method.abs_diff_eq-20' class='fnname'>abs_diff_eq</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self, epsilon: S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/cgmath/rotation.rs.html#379-381' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3CDeg%3CS%3E%3E' class='impl'><code class='in-band'>impl<S: <a class="trait" href="../cgmath/trait.BaseFloat.html" title="trait cgmath::BaseFloat">BaseFloat</a>> AbsDiffEq<<a class="struct" href="../cgmath/struct.Deg.html" title="struct cgmath::Deg">Deg</a><S>> for <a class="struct" href="../cgmath/struct.Deg.html" title="struct cgmath::Deg">Deg</a><S></code><a href='#impl-AbsDiffEq%3CDeg%3CS%3E%3E' class='anchor'></a><a class='srclink' href='../src/cgmath/angle.rs.html#174-186' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-22' class="type"><code id='Epsilon.t-22'>type <a href='#associatedtype.Epsilon-22' class="type">Epsilon</a> = S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code></h4><h4 id='method.default_epsilon-21' class="method hidden"><code id='default_epsilon.v-22'>fn <a href='#method.default_epsilon-21' class='fnname'>default_epsilon</a>() -> S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code><a class='srclink' href='../src/cgmath/angle.rs.html#178-180' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-21' class="method hidden"><code id='abs_diff_eq.v-22'>fn <a href='#method.abs_diff_eq-21' class='fnname'>abs_diff_eq</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self, epsilon: S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/cgmath/angle.rs.html#183-185' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3CMatrix2%3CS%3E%3E' class='impl'><code class='in-band'>impl<S: <a class="trait" href="../cgmath/trait.BaseFloat.html" title="trait cgmath::BaseFloat">BaseFloat</a>> AbsDiffEq<<a class="struct" href="../cgmath/struct.Matrix2.html" title="struct cgmath::Matrix2">Matrix2</a><S>> for <a class="struct" href="../cgmath/struct.Matrix2.html" title="struct cgmath::Matrix2">Matrix2</a><S></code><a href='#impl-AbsDiffEq%3CMatrix2%3CS%3E%3E' class='anchor'></a><a class='srclink' href='../src/cgmath/matrix.rs.html#841-854' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-23' class="type"><code id='Epsilon.t-23'>type <a href='#associatedtype.Epsilon-23' class="type">Epsilon</a> = S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code></h4><h4 id='method.default_epsilon-22' class="method hidden"><code id='default_epsilon.v-23'>fn <a href='#method.default_epsilon-22' class='fnname'>default_epsilon</a>() -> S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code><a class='srclink' href='../src/cgmath/matrix.rs.html#845-847' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-22' class="method hidden"><code id='abs_diff_eq.v-23'>fn <a href='#method.abs_diff_eq-22' class='fnname'>abs_diff_eq</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self, epsilon: S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/cgmath/matrix.rs.html#850-853' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3CMatrix3%3CS%3E%3E' class='impl'><code class='in-band'>impl<S: <a class="trait" href="../cgmath/trait.BaseFloat.html" title="trait cgmath::BaseFloat">BaseFloat</a>> AbsDiffEq<<a class="struct" href="../cgmath/struct.Matrix3.html" title="struct cgmath::Matrix3">Matrix3</a><S>> for <a class="struct" href="../cgmath/struct.Matrix3.html" title="struct cgmath::Matrix3">Matrix3</a><S></code><a href='#impl-AbsDiffEq%3CMatrix3%3CS%3E%3E' class='anchor'></a><a class='srclink' href='../src/cgmath/matrix.rs.html#882-896' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-24' class="type"><code id='Epsilon.t-24'>type <a href='#associatedtype.Epsilon-24' class="type">Epsilon</a> = S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code></h4><h4 id='method.default_epsilon-23' class="method hidden"><code id='default_epsilon.v-24'>fn <a href='#method.default_epsilon-23' class='fnname'>default_epsilon</a>() -> S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code><a class='srclink' href='../src/cgmath/matrix.rs.html#886-888' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-23' class="method hidden"><code id='abs_diff_eq.v-24'>fn <a href='#method.abs_diff_eq-23' class='fnname'>abs_diff_eq</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self, epsilon: S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/cgmath/matrix.rs.html#891-895' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3CMatrix4%3CS%3E%3E' class='impl'><code class='in-band'>impl<S: <a class="trait" href="../cgmath/trait.BaseFloat.html" title="trait cgmath::BaseFloat">BaseFloat</a>> AbsDiffEq<<a class="struct" href="../cgmath/struct.Matrix4.html" title="struct cgmath::Matrix4">Matrix4</a><S>> for <a class="struct" href="../cgmath/struct.Matrix4.html" title="struct cgmath::Matrix4">Matrix4</a><S></code><a href='#impl-AbsDiffEq%3CMatrix4%3CS%3E%3E' class='anchor'></a><a class='srclink' href='../src/cgmath/matrix.rs.html#926-941' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-25' class="type"><code id='Epsilon.t-25'>type <a href='#associatedtype.Epsilon-25' class="type">Epsilon</a> = S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code></h4><h4 id='method.default_epsilon-24' class="method hidden"><code id='default_epsilon.v-25'>fn <a href='#method.default_epsilon-24' class='fnname'>default_epsilon</a>() -> S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code><a class='srclink' href='../src/cgmath/matrix.rs.html#930-932' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-24' class="method hidden"><code id='abs_diff_eq.v-25'>fn <a href='#method.abs_diff_eq-24' class='fnname'>abs_diff_eq</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self, epsilon: S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/cgmath/matrix.rs.html#935-940' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3CPoint1%3CS%3E%3E' class='impl'><code class='in-band'>impl<S: <a class="trait" href="../cgmath/trait.BaseFloat.html" title="trait cgmath::BaseFloat">BaseFloat</a>> AbsDiffEq<<a class="struct" href="../cgmath/struct.Point1.html" title="struct cgmath::Point1">Point1</a><S>> for <a class="struct" href="../cgmath/struct.Point1.html" title="struct cgmath::Point1">Point1</a><S></code><a href='#impl-AbsDiffEq%3CPoint1%3CS%3E%3E' class='anchor'></a><a class='srclink' href='../src/cgmath/point.rs.html#175-189' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-26' class="type"><code id='Epsilon.t-26'>type <a href='#associatedtype.Epsilon-26' class="type">Epsilon</a> = S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code></h4><h4 id='method.default_epsilon-25' class="method hidden"><code id='default_epsilon.v-26'>fn <a href='#method.default_epsilon-25' class='fnname'>default_epsilon</a>() -> S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code><a class='srclink' href='../src/cgmath/point.rs.html#179-181' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-25' class="method hidden"><code id='abs_diff_eq.v-26'>fn <a href='#method.abs_diff_eq-25' class='fnname'>abs_diff_eq</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self, epsilon: S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/cgmath/point.rs.html#184-188' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3CPoint2%3CS%3E%3E' class='impl'><code class='in-band'>impl<S: <a class="trait" href="../cgmath/trait.BaseFloat.html" title="trait cgmath::BaseFloat">BaseFloat</a>> AbsDiffEq<<a class="struct" href="../cgmath/struct.Point2.html" title="struct cgmath::Point2">Point2</a><S>> for <a class="struct" href="../cgmath/struct.Point2.html" title="struct cgmath::Point2">Point2</a><S></code><a href='#impl-AbsDiffEq%3CPoint2%3CS%3E%3E' class='anchor'></a><a class='srclink' href='../src/cgmath/point.rs.html#175-189' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-27' class="type"><code id='Epsilon.t-27'>type <a href='#associatedtype.Epsilon-27' class="type">Epsilon</a> = S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code></h4><h4 id='method.default_epsilon-26' class="method hidden"><code id='default_epsilon.v-27'>fn <a href='#method.default_epsilon-26' class='fnname'>default_epsilon</a>() -> S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code><a class='srclink' href='../src/cgmath/point.rs.html#179-181' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-26' class="method hidden"><code id='abs_diff_eq.v-27'>fn <a href='#method.abs_diff_eq-26' class='fnname'>abs_diff_eq</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self, epsilon: S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/cgmath/point.rs.html#184-188' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3CPoint3%3CS%3E%3E' class='impl'><code class='in-band'>impl<S: <a class="trait" href="../cgmath/trait.BaseFloat.html" title="trait cgmath::BaseFloat">BaseFloat</a>> AbsDiffEq<<a class="struct" href="../cgmath/struct.Point3.html" title="struct cgmath::Point3">Point3</a><S>> for <a class="struct" href="../cgmath/struct.Point3.html" title="struct cgmath::Point3">Point3</a><S></code><a href='#impl-AbsDiffEq%3CPoint3%3CS%3E%3E' class='anchor'></a><a class='srclink' href='../src/cgmath/point.rs.html#175-189' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-28' class="type"><code id='Epsilon.t-28'>type <a href='#associatedtype.Epsilon-28' class="type">Epsilon</a> = S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code></h4><h4 id='method.default_epsilon-27' class="method hidden"><code id='default_epsilon.v-28'>fn <a href='#method.default_epsilon-27' class='fnname'>default_epsilon</a>() -> S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code><a class='srclink' href='../src/cgmath/point.rs.html#179-181' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-27' class="method hidden"><code id='abs_diff_eq.v-28'>fn <a href='#method.abs_diff_eq-27' class='fnname'>abs_diff_eq</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self, epsilon: S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/cgmath/point.rs.html#184-188' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3CQuaternion%3CS%3E%3E' class='impl'><code class='in-band'>impl<S: <a class="trait" href="../cgmath/trait.BaseFloat.html" title="trait cgmath::BaseFloat">BaseFloat</a>> AbsDiffEq<<a class="struct" href="../cgmath/struct.Quaternion.html" title="struct cgmath::Quaternion">Quaternion</a><S>> for <a class="struct" href="../cgmath/struct.Quaternion.html" title="struct cgmath::Quaternion">Quaternion</a><S></code><a href='#impl-AbsDiffEq%3CQuaternion%3CS%3E%3E' class='anchor'></a><a class='srclink' href='../src/cgmath/quaternion.rs.html#593-606' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-29' class="type"><code id='Epsilon.t-29'>type <a href='#associatedtype.Epsilon-29' class="type">Epsilon</a> = S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code></h4><h4 id='method.default_epsilon-28' class="method hidden"><code id='default_epsilon.v-29'>fn <a href='#method.default_epsilon-28' class='fnname'>default_epsilon</a>() -> S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code><a class='srclink' href='../src/cgmath/quaternion.rs.html#597-599' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-28' class="method hidden"><code id='abs_diff_eq.v-29'>fn <a href='#method.abs_diff_eq-28' class='fnname'>abs_diff_eq</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self, epsilon: S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/cgmath/quaternion.rs.html#602-605' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3CRad%3CS%3E%3E' class='impl'><code class='in-band'>impl<S: <a class="trait" href="../cgmath/trait.BaseFloat.html" title="trait cgmath::BaseFloat">BaseFloat</a>> AbsDiffEq<<a class="struct" href="../cgmath/struct.Rad.html" title="struct cgmath::Rad">Rad</a><S>> for <a class="struct" href="../cgmath/struct.Rad.html" title="struct cgmath::Rad">Rad</a><S></code><a href='#impl-AbsDiffEq%3CRad%3CS%3E%3E' class='anchor'></a><a class='srclink' href='../src/cgmath/angle.rs.html#174-186' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-30' class="type"><code id='Epsilon.t-30'>type <a href='#associatedtype.Epsilon-30' class="type">Epsilon</a> = S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code></h4><h4 id='method.default_epsilon-29' class="method hidden"><code id='default_epsilon.v-30'>fn <a href='#method.default_epsilon-29' class='fnname'>default_epsilon</a>() -> S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code><a class='srclink' href='../src/cgmath/angle.rs.html#178-180' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-29' class="method hidden"><code id='abs_diff_eq.v-30'>fn <a href='#method.abs_diff_eq-29' class='fnname'>abs_diff_eq</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self, epsilon: S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/cgmath/angle.rs.html#183-185' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3CVector1%3CS%3E%3E' class='impl'><code class='in-band'>impl<S: <a class="trait" href="../cgmath/trait.BaseFloat.html" title="trait cgmath::BaseFloat">BaseFloat</a>> AbsDiffEq<<a class="struct" href="../cgmath/struct.Vector1.html" title="struct cgmath::Vector1">Vector1</a><S>> for <a class="struct" href="../cgmath/struct.Vector1.html" title="struct cgmath::Vector1">Vector1</a><S></code><a href='#impl-AbsDiffEq%3CVector1%3CS%3E%3E' class='anchor'></a><a class='srclink' href='../src/cgmath/vector.rs.html#210-222' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-31' class="type"><code id='Epsilon.t-31'>type <a href='#associatedtype.Epsilon-31' class="type">Epsilon</a> = S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code></h4><h4 id='method.default_epsilon-30' class="method hidden"><code id='default_epsilon.v-31'>fn <a href='#method.default_epsilon-30' class='fnname'>default_epsilon</a>() -> S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code><a class='srclink' href='../src/cgmath/vector.rs.html#214-216' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-30' class="method hidden"><code id='abs_diff_eq.v-31'>fn <a href='#method.abs_diff_eq-30' class='fnname'>abs_diff_eq</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self, epsilon: S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/cgmath/vector.rs.html#219-221' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3CVector2%3CS%3E%3E' class='impl'><code class='in-band'>impl<S: <a class="trait" href="../cgmath/trait.BaseFloat.html" title="trait cgmath::BaseFloat">BaseFloat</a>> AbsDiffEq<<a class="struct" href="../cgmath/struct.Vector2.html" title="struct cgmath::Vector2">Vector2</a><S>> for <a class="struct" href="../cgmath/struct.Vector2.html" title="struct cgmath::Vector2">Vector2</a><S></code><a href='#impl-AbsDiffEq%3CVector2%3CS%3E%3E' class='anchor'></a><a class='srclink' href='../src/cgmath/vector.rs.html#210-222' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-32' class="type"><code id='Epsilon.t-32'>type <a href='#associatedtype.Epsilon-32' class="type">Epsilon</a> = S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code></h4><h4 id='method.default_epsilon-31' class="method hidden"><code id='default_epsilon.v-32'>fn <a href='#method.default_epsilon-31' class='fnname'>default_epsilon</a>() -> S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code><a class='srclink' href='../src/cgmath/vector.rs.html#214-216' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-31' class="method hidden"><code id='abs_diff_eq.v-32'>fn <a href='#method.abs_diff_eq-31' class='fnname'>abs_diff_eq</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self, epsilon: S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/cgmath/vector.rs.html#219-221' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3CVector3%3CS%3E%3E' class='impl'><code class='in-band'>impl<S: <a class="trait" href="../cgmath/trait.BaseFloat.html" title="trait cgmath::BaseFloat">BaseFloat</a>> AbsDiffEq<<a class="struct" href="../cgmath/struct.Vector3.html" title="struct cgmath::Vector3">Vector3</a><S>> for <a class="struct" href="../cgmath/struct.Vector3.html" title="struct cgmath::Vector3">Vector3</a><S></code><a href='#impl-AbsDiffEq%3CVector3%3CS%3E%3E' class='anchor'></a><a class='srclink' href='../src/cgmath/vector.rs.html#210-222' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-33' class="type"><code id='Epsilon.t-33'>type <a href='#associatedtype.Epsilon-33' class="type">Epsilon</a> = S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code></h4><h4 id='method.default_epsilon-32' class="method hidden"><code id='default_epsilon.v-33'>fn <a href='#method.default_epsilon-32' class='fnname'>default_epsilon</a>() -> S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code><a class='srclink' href='../src/cgmath/vector.rs.html#214-216' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-32' class="method hidden"><code id='abs_diff_eq.v-33'>fn <a href='#method.abs_diff_eq-32' class='fnname'>abs_diff_eq</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self, epsilon: S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/cgmath/vector.rs.html#219-221' title='goto source code'>[src]</a></h4></div><h3 id='impl-AbsDiffEq%3CVector4%3CS%3E%3E' class='impl'><code class='in-band'>impl<S: <a class="trait" href="../cgmath/trait.BaseFloat.html" title="trait cgmath::BaseFloat">BaseFloat</a>> AbsDiffEq<<a class="struct" href="../cgmath/struct.Vector4.html" title="struct cgmath::Vector4">Vector4</a><S>> for <a class="struct" href="../cgmath/struct.Vector4.html" title="struct cgmath::Vector4">Vector4</a><S></code><a href='#impl-AbsDiffEq%3CVector4%3CS%3E%3E' class='anchor'></a><a class='srclink' href='../src/cgmath/vector.rs.html#210-222' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon-34' class="type"><code id='Epsilon.t-34'>type <a href='#associatedtype.Epsilon-34' class="type">Epsilon</a> = S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code></h4><h4 id='method.default_epsilon-33' class="method hidden"><code id='default_epsilon.v-34'>fn <a href='#method.default_epsilon-33' class='fnname'>default_epsilon</a>() -> S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a></code><a class='srclink' href='../src/cgmath/vector.rs.html#214-216' title='goto source code'>[src]</a></h4><h4 id='method.abs_diff_eq-33' class="method hidden"><code id='abs_diff_eq.v-34'>fn <a href='#method.abs_diff_eq-33' class='fnname'>abs_diff_eq</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self, epsilon: S::<a class="type" href="../cgmath/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type cgmath::AbsDiffEq::Epsilon">Epsilon</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/cgmath/vector.rs.html#219-221' title='goto source code'>[src]</a></h4></div></div><span class='loading-content'>Loading content...</span><script type="text/javascript">window.inlined_types=new Set([]);</script><script type="text/javascript" async
|
|
|
src="../implementors/approx/abs_diff_eq/trait.AbsDiffEq.js">
|
|
|
</script></section><section id="search" class="content hidden"></section><section class="footer"></section><aside id="help" class="hidden"><div><h1 class="hidden">Help</h1><div class="shortcuts"><h2>Keyboard Shortcuts</h2><dl><dt><kbd>?</kbd></dt><dd>Show this help dialog</dd><dt><kbd>S</kbd></dt><dd>Focus the search field</dd><dt><kbd>↑</kbd></dt><dd>Move up in search results</dd><dt><kbd>↓</kbd></dt><dd>Move down in search results</dd><dt><kbd>↹</kbd></dt><dd>Switch tab</dd><dt><kbd>⏎</kbd></dt><dd>Go to active search result</dd><dt><kbd>+</kbd></dt><dd>Expand all sections</dd><dt><kbd>-</kbd></dt><dd>Collapse all sections</dd></dl></div><div class="infos"><h2>Search Tricks</h2><p>Prefix searches with a type followed by a colon (e.g., <code>fn:</code>) to restrict the search to a given type.</p><p>Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>.</p><p>Search functions by type signature (e.g., <code>vec -> usize</code> or <code>* -> vec</code>)</p><p>Search multiple things at once by splitting your query with comma (e.g., <code>str,u8</code> or <code>String,struct:Vec,test</code>)</p></div></div></aside><script>window.rootPath = "../";window.currentCrate = "cgmath";</script><script src="../aliases.js"></script><script src="../main.js"></script><script defer src="../search-index.js"></script></body></html> |