You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Trac3r-rust/doc/nalgebra/base/storage/trait.Storage.html

52 lines
53 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!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 `Storage` trait in crate `nalgebra`."><meta name="keywords" content="rust, rustlang, rust-lang, Storage"><title>nalgebra::base::storage::Storage - 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="http://nalgebra.org/img/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">&#9776;</div><a href='../../../nalgebra/index.html'><div class='logo-container'><img src='../../../rust-logo.png' alt='logo'></div></a><p class='location'>Trait Storage</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.RStride">RStride</a><a href="#associatedtype.CStride">CStride</a></div><a class="sidebar-title" href="#required-methods">Required Methods</a><div class="sidebar-links"><a href="#tymethod.as_slice">as_slice</a><a href="#tymethod.clone_owned">clone_owned</a><a href="#tymethod.into_owned">into_owned</a><a href="#tymethod.is_contiguous">is_contiguous</a><a href="#tymethod.ptr">ptr</a><a href="#tymethod.shape">shape</a><a href="#tymethod.strides">strides</a></div><a class="sidebar-title" href="#provided-methods">Provided Methods</a><div class="sidebar-links"><a href="#method.get_address_unchecked">get_address_unchecked</a><a href="#method.get_address_unchecked_linear">get_address_unchecked_linear</a><a href="#method.get_unchecked">get_unchecked</a><a href="#method.get_unchecked_linear">get_unchecked_linear</a><a href="#method.linear_index">linear_index</a></div><a class="sidebar-title" href="#implementors">Implementors</a></div><p class='location'><a href='../../index.html'>nalgebra</a>::<wbr><a href='../index.html'>base</a>::<wbr><a href='index.html'>storage</a></p><script>window.sidebarCurrent = {name: 'Storage', 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'>&#x2212;</span>]</a></span><a class='srclink' href='../../../src/nalgebra/base/storage.rs.html#39-113' title='goto source code'>[src]</a></span><span class='in-band'>Trait <a href='../../index.html'>nalgebra</a>::<wbr><a href='../index.html'>base</a>::<wbr><a href='index.html'>storage</a>::<wbr><a class="trait" href=''>Storage</a></span></h1><div class="docblock type-decl hidden-by-usual-hider"><pre class='rust trait'>pub unsafe trait Storage&lt;N:&nbsp;<a class="trait" href="../../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>, R:&nbsp;<a class="trait" href="../../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, C:&nbsp;<a class="trait" href="../../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>&nbsp;=&nbsp;<a class="struct" href="../../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;: <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html" title="trait core::fmt::Debug">Debug</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> {
type <a href='#associatedtype.RStride' class="type">RStride</a>: <a class="trait" href="../../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>;
type <a href='#associatedtype.CStride' class="type">CStride</a>: <a class="trait" href="../../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>;
fn <a href='#tymethod.ptr' class='fnname'>ptr</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.pointer.html">*const N</a>;
<div class='item-spacer'></div> fn <a href='#tymethod.shape' class='fnname'>shape</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>R, C<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>;
<div class='item-spacer'></div> fn <a href='#tymethod.strides' class='fnname'>strides</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../../../nalgebra/base/storage/trait.Storage.html#associatedtype.RStride" title="type nalgebra::base::storage::Storage::RStride">RStride</a>, Self::<a class="type" href="../../../nalgebra/base/storage/trait.Storage.html#associatedtype.CStride" title="type nalgebra::base::storage::Storage::CStride">CStride</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>;
<div class='item-spacer'></div> fn <a href='#tymethod.is_contiguous' class='fnname'>is_contiguous</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>;
<div class='item-spacer'></div> fn <a href='#tymethod.as_slice' class='fnname'>as_slice</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;[N]</a>;
<div class='item-spacer'></div> fn <a href='#tymethod.into_owned' class='fnname'>into_owned</a>(self) -&gt; <a class="type" href="../../../nalgebra/base/storage/type.Owned.html" title="type nalgebra::base::storage::Owned">Owned</a>&lt;N, R, C&gt;<br>&nbsp;&nbsp;&nbsp; <span class="where">where<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, R, C&gt;</span>;
<div class='item-spacer'></div> fn <a href='#tymethod.clone_owned' class='fnname'>clone_owned</a>(&amp;self) -&gt; <a class="type" href="../../../nalgebra/base/storage/type.Owned.html" title="type nalgebra::base::storage::Owned">Owned</a>&lt;N, R, C&gt;<br>&nbsp;&nbsp;&nbsp; <span class="where">where<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, R, C&gt;</span>;
fn <a href='#method.linear_index' class='fnname'>linear_index</a>(&amp;self, irow: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>, icol: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a> { ... }
<div class='item-spacer'></div> unsafe fn <a href='#method.get_address_unchecked_linear' class='fnname'>get_address_unchecked_linear</a>(&amp;self, i: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.pointer.html">*const N</a> { ... }
<div class='item-spacer'></div> unsafe fn <a href='#method.get_address_unchecked' class='fnname'>get_address_unchecked</a>(&amp;self, irow: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>, icol: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.pointer.html">*const N</a> { ... }
<div class='item-spacer'></div> unsafe fn <a href='#method.get_unchecked_linear' class='fnname'>get_unchecked_linear</a>(&amp;self, i: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>N { ... }
<div class='item-spacer'></div> unsafe fn <a href='#method.get_unchecked' class='fnname'>get_unchecked</a>(&amp;self, irow: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>, icol: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>N { ... }
}</pre></div><div class='docblock'><p>The trait shared by all matrix data storage.</p>
<p>FIXME: doc</p>
<p>Note that <code>Self</code> must always have a number of elements compatible with the matrix length (given
by <code>R</code> and <code>C</code> if they are known at compile-time). For example, implementors of this trait
should <strong>not</strong> allow the user to modify the size of the underlying buffer with safe methods
(for example the <code>VecStorage::data_mut</code> method is unsafe because the user could change the
vector's size so that it no longer contains enough elements: this will lead to UB.</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.RStride' class='method'><code id='RStride.t'>type <a href='#associatedtype.RStride' class="type">RStride</a>: <a class="trait" href="../../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a></code></h3><div class='docblock'><p>The static stride of this storage's rows.</p>
</div><h3 id='associatedtype.CStride' class='method'><code id='CStride.t'>type <a href='#associatedtype.CStride' class="type">CStride</a>: <a class="trait" href="../../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a></code></h3><div class='docblock'><p>The static stride of this storage's columns.</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.ptr' class='method'><code id='ptr.v'>fn <a href='#tymethod.ptr' class='fnname'>ptr</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.pointer.html">*const N</a></code></h3><div class='docblock'><p>The matrix data pointer.</p>
</div><h3 id='tymethod.shape' class='method'><code id='shape.v'>fn <a href='#tymethod.shape' class='fnname'>shape</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>R, C<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code></h3><div class='docblock'><p>The dimension of the matrix at run-time. Arr length of zero indicates the additive identity
element of any dimension. Must be equal to <code>Self::dimension()</code> if it is not <code>None</code>.</p>
</div><h3 id='tymethod.strides' class='method'><code id='strides.v'>fn <a href='#tymethod.strides' class='fnname'>strides</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../../../nalgebra/base/storage/trait.Storage.html#associatedtype.RStride" title="type nalgebra::base::storage::Storage::RStride">RStride</a>, Self::<a class="type" href="../../../nalgebra/base/storage/trait.Storage.html#associatedtype.CStride" title="type nalgebra::base::storage::Storage::CStride">CStride</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code></h3><div class='docblock'><p>The spacing between consecutive row elements and consecutive column elements.</p>
<p>For example this returns <code>(1, 5)</code> for a row-major matrix with 5 columns.</p>
</div><h3 id='tymethod.is_contiguous' class='method'><code id='is_contiguous.v'>fn <a href='#tymethod.is_contiguous' class='fnname'>is_contiguous</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></h3><div class='docblock'><p>Indicates whether this data buffer stores its elements contiguously.</p>
</div><h3 id='tymethod.as_slice' class='method'><code id='as_slice.v'>fn <a href='#tymethod.as_slice' class='fnname'>as_slice</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;[N]</a></code></h3><div class='docblock'><p>Retrieves the data buffer as a contiguous slice.</p>
<p>The matrix components may not be stored in a contiguous way, depending on the strides.</p>
</div><h3 id='tymethod.into_owned' class='method'><code id='into_owned.v'>fn <a href='#tymethod.into_owned' class='fnname'>into_owned</a>(self) -&gt; <a class="type" href="../../../nalgebra/base/storage/type.Owned.html" title="type nalgebra::base::storage::Owned">Owned</a>&lt;N, R, C&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, R, C&gt;,&nbsp;</span></code></h3><div class='docblock'><p>Builds a matrix data storage that does not contain any reference.</p>
</div><h3 id='tymethod.clone_owned' class='method'><code id='clone_owned.v'>fn <a href='#tymethod.clone_owned' class='fnname'>clone_owned</a>(&amp;self) -&gt; <a class="type" href="../../../nalgebra/base/storage/type.Owned.html" title="type nalgebra::base::storage::Owned">Owned</a>&lt;N, R, C&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, R, C&gt;,&nbsp;</span></code></h3><div class='docblock'><p>Clones this data storage to one that does not contain any reference.</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.linear_index' class='method'><code id='linear_index.v'>fn <a href='#method.linear_index' class='fnname'>linear_index</a>(&amp;self, irow: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>, icol: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code></h3><div class='docblock'><p>Compute the index corresponding to the irow-th row and icol-th column of this matrix. The
index must be such that the following holds:</p>
<div class='information'><div class='tooltip ignore'><span class='tooltiptext'>This example is not tested</span></div></div><div class="example-wrap"><pre class="rust rust-example-rendered ignore">
<span class="kw">let</span> <span class="ident">lindex</span> <span class="op">=</span> <span class="self">self</span>.<span class="ident">linear_index</span>(<span class="ident">irow</span>, <span class="ident">icol</span>);
<span class="macro">assert</span><span class="macro">!</span>(<span class="kw-2">*</span><span class="self">self</span>.<span class="ident">get_unchecked</span>(<span class="ident">irow</span>, <span class="ident">icol</span>) <span class="op">=</span><span class="op">=</span> <span class="kw-2">*</span><span class="self">self</span>.<span class="ident">get_unchecked_linear</span>(<span class="ident">lindex</span>)</pre></div>
</div><h3 id='method.get_address_unchecked_linear' class='method'><code id='get_address_unchecked_linear.v'>unsafe fn <a href='#method.get_address_unchecked_linear' class='fnname'>get_address_unchecked_linear</a>(&amp;self, i: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.pointer.html">*const N</a></code></h3><div class='docblock'><p>Gets the address of the i-th matrix component without performing bound-checking.</p>
</div><h3 id='method.get_address_unchecked' class='method'><code id='get_address_unchecked.v'>unsafe fn <a href='#method.get_address_unchecked' class='fnname'>get_address_unchecked</a>(&amp;self, irow: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>, icol: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.pointer.html">*const N</a></code></h3><div class='docblock'><p>Gets the address of the i-th matrix component without performing bound-checking.</p>
</div><h3 id='method.get_unchecked_linear' class='method'><code id='get_unchecked_linear.v'>unsafe fn <a href='#method.get_unchecked_linear' class='fnname'>get_unchecked_linear</a>(&amp;self, i: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>N</code></h3><div class='docblock'><p>Retrieves a reference to the i-th element without bound-checking.</p>
</div><h3 id='method.get_unchecked' class='method'><code id='get_unchecked.v'>unsafe fn <a href='#method.get_unchecked' class='fnname'>get_unchecked</a>(&amp;self, irow: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>, icol: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>N</code></h3><div class='docblock'><p>Retrieves a reference to the i-th element without bound-checking.</p>
</div></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-Storage%3CN%2C%20R%2C%20C%3E' class='impl'><code class='in-band'>impl&lt;'a, N:&nbsp;<a class="trait" href="../../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>, R:&nbsp;<a class="trait" href="../../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, C:&nbsp;<a class="trait" href="../../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, RStride:&nbsp;<a class="trait" href="../../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, CStride:&nbsp;<a class="trait" href="../../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>&gt; Storage&lt;N, R, C&gt; for <a class="struct" href="../../../nalgebra/base/struct.SliceStorage.html" title="struct nalgebra::base::SliceStorage">SliceStorage</a>&lt;'a, N, R, C, RStride, CStride&gt;</code><a href='#impl-Storage%3CN%2C%20R%2C%20C%3E' class='anchor'></a><a class='srclink' href='../../../src/nalgebra/base/matrix_slice.rs.html#113-175' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.RStride-1' class="type"><code id='RStride.t-1'>type <a href='#associatedtype.RStride-1' class="type">RStride</a> = RStride</code></h4><h4 id='associatedtype.CStride-1' class="type"><code id='CStride.t-1'>type <a href='#associatedtype.CStride-1' class="type">CStride</a> = CStride</code></h4><h4 id='method.ptr' class="method hidden"><code id='ptr.v-1'>fn <a href='#method.ptr' class='fnname'>ptr</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.pointer.html">*const N</a></code><a class='srclink' href='../../../src/nalgebra/base/matrix_slice.rs.html#120-122' title='goto source code'>[src]</a></h4><h4 id='method.shape' class="method hidden"><code id='shape.v-1'>fn <a href='#method.shape' class='fnname'>shape</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>R, C<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code><a class='srclink' href='../../../src/nalgebra/base/matrix_slice.rs.html#125-127' title='goto source code'>[src]</a></h4><h4 id='method.strides' class="method hidden"><code id='strides.v-1'>fn <a href='#method.strides' class='fnname'>strides</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../../../nalgebra/base/storage/trait.Storage.html#associatedtype.RStride" title="type nalgebra::base::storage::Storage::RStride">RStride</a>, Self::<a class="type" href="../../../nalgebra/base/storage/trait.Storage.html#associatedtype.CStride" title="type nalgebra::base::storage::Storage::CStride">CStride</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code><a class='srclink' href='../../../src/nalgebra/base/matrix_slice.rs.html#130-132' title='goto source code'>[src]</a></h4><h4 id='method.is_contiguous' class="method hidden"><code id='is_contiguous.v-1'>fn <a href='#method.is_contiguous' class='fnname'>is_contiguous</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../../../src/nalgebra/base/matrix_slice.rs.html#135-148' title='goto source code'>[src]</a></h4><h4 id='method.into_owned' class="method hidden"><code id='into_owned.v-1'>fn <a href='#method.into_owned' class='fnname'>into_owned</a>(self) -&gt; <a class="type" href="../../../nalgebra/base/storage/type.Owned.html" title="type nalgebra::base::storage::Owned">Owned</a>&lt;N, R, C&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, R, C&gt;,&nbsp;</span></code><a class='srclink' href='../../../src/nalgebra/base/matrix_slice.rs.html#151-154' title='goto source code'>[src]</a></h4><h4 id='method.clone_owned' class="method hidden"><code id='clone_owned.v-1'>fn <a href='#method.clone_owned' class='fnname'>clone_owned</a>(&amp;self) -&gt; <a class="type" href="../../../nalgebra/base/storage/type.Owned.html" title="type nalgebra::base::storage::Owned">Owned</a>&lt;N, R, C&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, R, C&gt;,&nbsp;</span></code><a class='srclink' href='../../../src/nalgebra/base/matrix_slice.rs.html#157-162' title='goto source code'>[src]</a></h4><h4 id='method.as_slice' class="method hidden"><code id='as_slice.v-1'>fn <a href='#method.as_slice' class='fnname'>as_slice</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;[N]</a></code><a class='srclink' href='../../../src/nalgebra/base/matrix_slice.rs.html#165-174' title='goto source code'>[src]</a></h4></div><h3 id='impl-Storage%3CN%2C%20R%2C%20C%3E-1' class='impl'><code class='in-band'>impl&lt;'a, N:&nbsp;<a class="trait" href="../../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>, R:&nbsp;<a class="trait" href="../../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, C:&nbsp;<a class="trait" href="../../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, RStride:&nbsp;<a class="trait" href="../../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, CStride:&nbsp;<a class="trait" href="../../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>&gt; Storage&lt;N, R, C&gt; for <a class="struct" href="../../../nalgebra/base/struct.SliceStorageMut.html" title="struct nalgebra::base::SliceStorageMut">SliceStorageMut</a>&lt;'a, N, R, C, RStride, CStride&gt;</code><a href='#impl-Storage%3CN%2C%20R%2C%20C%3E-1' class='anchor'></a><a class='srclink' href='../../../src/nalgebra/base/matrix_slice.rs.html#113-175' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.RStride-2' class="type"><code id='RStride.t-2'>type <a href='#associatedtype.RStride-2' class="type">RStride</a> = RStride</code></h4><h4 id='associatedtype.CStride-2' class="type"><code id='CStride.t-2'>type <a href='#associatedtype.CStride-2' class="type">CStride</a> = CStride</code></h4><h4 id='method.ptr-1' class="method hidden"><code id='ptr.v-2'>fn <a href='#method.ptr-1' class='fnname'>ptr</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.pointer.html">*const N</a></code><a class='srclink' href='../../../src/nalgebra/base/matrix_slice.rs.html#120-122' title='goto source code'>[src]</a></h4><h4 id='method.shape-1' class="method hidden"><code id='shape.v-2'>fn <a href='#method.shape-1' class='fnname'>shape</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>R, C<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code><a class='srclink' href='../../../src/nalgebra/base/matrix_slice.rs.html#125-127' title='goto source code'>[src]</a></h4><h4 id='method.strides-1' class="method hidden"><code id='strides.v-2'>fn <a href='#method.strides-1' class='fnname'>strides</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../../../nalgebra/base/storage/trait.Storage.html#associatedtype.RStride" title="type nalgebra::base::storage::Storage::RStride">RStride</a>, Self::<a class="type" href="../../../nalgebra/base/storage/trait.Storage.html#associatedtype.CStride" title="type nalgebra::base::storage::Storage::CStride">CStride</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code><a class='srclink' href='../../../src/nalgebra/base/matrix_slice.rs.html#130-132' title='goto source code'>[src]</a></h4><h4 id='method.is_contiguous-1' class="method hidden"><code id='is_contiguous.v-2'>fn <a href='#method.is_contiguous-1' class='fnname'>is_contiguous</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../../../src/nalgebra/base/matrix_slice.rs.html#135-148' title='goto source code'>[src]</a></h4><h4 id='method.into_owned-1' class="method hidden"><code id='into_owned.v-2'>fn <a href='#method.into_owned-1' class='fnname'>into_owned</a>(self) -&gt; <a class="type" href="../../../nalgebra/base/storage/type.Owned.html" title="type nalgebra::base::storage::Owned">Owned</a>&lt;N, R, C&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, R, C&gt;,&nbsp;</span></code><a class='srclink' href='../../../src/nalgebra/base/matrix_slice.rs.html#151-154' title='goto source code'>[src]</a></h4><h4 id='method.clone_owned-1' class="method hidden"><code id='clone_owned.v-2'>fn <a href='#method.clone_owned-1' class='fnname'>clone_owned</a>(&amp;self) -&gt; <a class="type" href="../../../nalgebra/base/storage/type.Owned.html" title="type nalgebra::base::storage::Owned">Owned</a>&lt;N, R, C&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, R, C&gt;,&nbsp;</span></code><a class='srclink' href='../../../src/nalgebra/base/matrix_slice.rs.html#157-162' title='goto source code'>[src]</a></h4><h4 id='method.as_slice-1' class="method hidden"><code id='as_slice.v-2'>fn <a href='#method.as_slice-1' class='fnname'>as_slice</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;[N]</a></code><a class='srclink' href='../../../src/nalgebra/base/matrix_slice.rs.html#165-174' title='goto source code'>[src]</a></h4></div><h3 id='impl-Storage%3CN%2C%20R%2C%20C%3E-2' class='impl'><code class='in-band'>impl&lt;N, R, C&gt; Storage&lt;N, R, C&gt; for <a class="struct" href="../../../nalgebra/base/struct.ArrayStorage.html" title="struct nalgebra::base::ArrayStorage">ArrayStorage</a>&lt;N, R, C&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;R: <a class="trait" href="../../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;C: <a class="trait" href="../../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;R::<a class="type" href="../../../nalgebra/base/dimension/trait.DimName.html#associatedtype.Value" title="type nalgebra::base::dimension::DimName::Value">Value</a>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;C::<a class="type" href="../../../nalgebra/base/dimension/trait.DimName.html#associatedtype.Value" title="type nalgebra::base::dimension::DimName::Value">Value</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="type" href="../../../typenum/operator_aliases/type.Prod.html" title="type typenum::operator_aliases::Prod">Prod</a>&lt;R::<a class="type" href="../../../nalgebra/base/dimension/trait.DimName.html#associatedtype.Value" title="type nalgebra::base::dimension::DimName::Value">Value</a>, C::<a class="type" href="../../../nalgebra/base/dimension/trait.DimName.html#associatedtype.Value" title="type nalgebra::base::dimension::DimName::Value">Value</a>&gt;: <a class="trait" href="../../../generic_array/trait.ArrayLength.html" title="trait generic_array::ArrayLength">ArrayLength</a>&lt;N&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, R, C, Buffer = Self&gt;,&nbsp;</span></code><a href='#impl-Storage%3CN%2C%20R%2C%20C%3E-2' class='anchor'></a><a class='srclink' href='../../../src/nalgebra/base/array_storage.rs.html#155-205' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.RStride-3' class="type"><code id='RStride.t-3'>type <a href='#associatedtype.RStride-3' class="type">RStride</a> = <a class="struct" href="../../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a></code></h4><h4 id='associatedtype.CStride-3' class="type"><code id='CStride.t-3'>type <a href='#associatedtype.CStride-3' class="type">CStride</a> = R</code></h4><h4 id='method.ptr-2' class="method hidden"><code id='ptr.v-3'>fn <a href='#method.ptr-2' class='fnname'>ptr</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.pointer.html">*const N</a></code><a class='srclink' href='../../../src/nalgebra/base/array_storage.rs.html#168-170' title='goto source code'>[src]</a></h4><h4 id='method.shape-2' class="method hidden"><code id='shape.v-3'>fn <a href='#method.shape-2' class='fnname'>shape</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>R, C<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code><a class='srclink' href='../../../src/nalgebra/base/array_storage.rs.html#173-175' title='goto source code'>[src]</a></h4><h4 id='method.strides-2' class="method hidden"><code id='strides.v-3'>fn <a href='#method.strides-2' class='fnname'>strides</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../../../nalgebra/base/storage/trait.Storage.html#associatedtype.RStride" title="type nalgebra::base::storage::Storage::RStride">RStride</a>, Self::<a class="type" href="../../../nalgebra/base/storage/trait.Storage.html#associatedtype.CStride" title="type nalgebra::base::storage::Storage::CStride">CStride</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code><a class='srclink' href='../../../src/nalgebra/base/array_storage.rs.html#178-180' title='goto source code'>[src]</a></h4><h4 id='method.is_contiguous-2' class="method hidden"><code id='is_contiguous.v-3'>fn <a href='#method.is_contiguous-2' class='fnname'>is_contiguous</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../../../src/nalgebra/base/array_storage.rs.html#183-185' title='goto source code'>[src]</a></h4><h4 id='method.into_owned-2' class="method hidden"><code id='into_owned.v-3'>fn <a href='#method.into_owned-2' class='fnname'>into_owned</a>(self) -&gt; <a class="type" href="../../../nalgebra/base/storage/type.Owned.html" title="type nalgebra::base::storage::Owned">Owned</a>&lt;N, R, C&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, R, C&gt;,&nbsp;</span></code><a class='srclink' href='../../../src/nalgebra/base/array_storage.rs.html#188-191' title='goto source code'>[src]</a></h4><h4 id='method.clone_owned-2' class="method hidden"><code id='clone_owned.v-3'>fn <a href='#method.clone_owned-2' class='fnname'>clone_owned</a>(&amp;self) -&gt; <a class="type" href="../../../nalgebra/base/storage/type.Owned.html" title="type nalgebra::base::storage::Owned">Owned</a>&lt;N, R, C&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, R, C&gt;,&nbsp;</span></code><a class='srclink' href='../../../src/nalgebra/base/array_storage.rs.html#194-199' title='goto source code'>[src]</a></h4><h4 id='method.as_slice-2' class="method hidden"><code id='as_slice.v-3'>fn <a href='#method.as_slice-2' class='fnname'>as_slice</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;[N]</a></code><a class='srclink' href='../../../src/nalgebra/base/array_storage.rs.html#202-204' title='goto source code'>[src]</a></h4></div><h3 id='impl-Storage%3CN%2C%20Dynamic%2C%20C%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>, C:&nbsp;<a class="trait" href="../../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>&gt; Storage&lt;N, <a class="struct" href="../../../nalgebra/base/dimension/struct.Dynamic.html" title="struct nalgebra::base::dimension::Dynamic">Dynamic</a>, C&gt; for <a class="struct" href="../../../nalgebra/base/struct.VecStorage.html" title="struct nalgebra::base::VecStorage">VecStorage</a>&lt;N, <a class="struct" href="../../../nalgebra/base/dimension/struct.Dynamic.html" title="struct nalgebra::base::dimension::Dynamic">Dynamic</a>, C&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../../nalgebra/base/dimension/struct.Dynamic.html" title="struct nalgebra::base::dimension::Dynamic">Dynamic</a>, C, Buffer = Self&gt;,&nbsp;</span></code><a href='#impl-Storage%3CN%2C%20Dynamic%2C%20C%3E' class='anchor'></a><a class='srclink' href='../../../src/nalgebra/base/vec_storage.rs.html#105-147' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.RStride-4' class="type"><code id='RStride.t-4'>type <a href='#associatedtype.RStride-4' class="type">RStride</a> = <a class="struct" href="../../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a></code></h4><h4 id='associatedtype.CStride-4' class="type"><code id='CStride.t-4'>type <a href='#associatedtype.CStride-4' class="type">CStride</a> = <a class="struct" href="../../../nalgebra/base/dimension/struct.Dynamic.html" title="struct nalgebra::base::dimension::Dynamic">Dynamic</a></code></h4><h4 id='method.ptr-3' class="method hidden"><code id='ptr.v-4'>fn <a href='#method.ptr-3' class='fnname'>ptr</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.pointer.html">*const N</a></code><a class='srclink' href='../../../src/nalgebra/base/vec_storage.rs.html#112-114' title='goto source code'>[src]</a></h4><h4 id='method.shape-3' class="method hidden"><code id='shape.v-4'>fn <a href='#method.shape-3' class='fnname'>shape</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a><a class="struct" href="../../../nalgebra/base/dimension/struct.Dynamic.html" title="struct nalgebra::base::dimension::Dynamic">Dynamic</a>, C<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code><a class='srclink' href='../../../src/nalgebra/base/vec_storage.rs.html#117-119' title='goto source code'>[src]</a></h4><h4 id='method.strides-3' class="method hidden"><code id='strides.v-4'>fn <a href='#method.strides-3' class='fnname'>strides</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../../../nalgebra/base/storage/trait.Storage.html#associatedtype.RStride" title="type nalgebra::base::storage::Storage::RStride">RStride</a>, Self::<a class="type" href="../../../nalgebra/base/storage/trait.Storage.html#associatedtype.CStride" title="type nalgebra::base::storage::Storage::CStride">CStride</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code><a class='srclink' href='../../../src/nalgebra/base/vec_storage.rs.html#122-124' title='goto source code'>[src]</a></h4><h4 id='method.is_contiguous-3' class="method hidden"><code id='is_contiguous.v-4'>fn <a href='#method.is_contiguous-3' class='fnname'>is_contiguous</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../../../src/nalgebra/base/vec_storage.rs.html#127-129' title='goto source code'>[src]</a></h4><h4 id='method.into_owned-3' class="method hidden"><code id='into_owned.v-4'>fn <a href='#method.into_owned-3' class='fnname'>into_owned</a>(self) -&gt; <a class="type" href="../../../nalgebra/base/storage/type.Owned.html" title="type nalgebra::base::storage::Owned">Owned</a>&lt;N, <a class="struct" href="../../../nalgebra/base/dimension/struct.Dynamic.html" title="struct nalgebra::base::dimension::Dynamic">Dynamic</a>, C&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../../nalgebra/base/dimension/struct.Dynamic.html" title="struct nalgebra::base::dimension::Dynamic">Dynamic</a>, C&gt;,&nbsp;</span></code><a class='srclink' href='../../../src/nalgebra/base/vec_storage.rs.html#132-135' title='goto source code'>[src]</a></h4><h4 id='method.clone_owned-3' class="method hidden"><code id='clone_owned.v-4'>fn <a href='#method.clone_owned-3' class='fnname'>clone_owned</a>(&amp;self) -&gt; <a class="type" href="../../../nalgebra/base/storage/type.Owned.html" title="type nalgebra::base::storage::Owned">Owned</a>&lt;N, <a class="struct" href="../../../nalgebra/base/dimension/struct.Dynamic.html" title="struct nalgebra::base::dimension::Dynamic">Dynamic</a>, C&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../../nalgebra/base/dimension/struct.Dynamic.html" title="struct nalgebra::base::dimension::Dynamic">Dynamic</a>, C&gt;,&nbsp;</span></code><a class='srclink' href='../../../src/nalgebra/base/vec_storage.rs.html#138-141' title='goto source code'>[src]</a></h4><h4 id='method.as_slice-3' class="method hidden"><code id='as_slice.v-4'>fn <a href='#method.as_slice-3' class='fnname'>as_slice</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;[N]</a></code><a class='srclink' href='../../../src/nalgebra/base/vec_storage.rs.html#144-146' title='goto source code'>[src]</a></h4></div><h3 id='impl-Storage%3CN%2C%20R%2C%20Dynamic%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>, R:&nbsp;<a class="trait" href="../../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; Storage&lt;N, R, <a class="struct" href="../../../nalgebra/base/dimension/struct.Dynamic.html" title="struct nalgebra::base::dimension::Dynamic">Dynamic</a>&gt; for <a class="struct" href="../../../nalgebra/base/struct.VecStorage.html" title="struct nalgebra::base::VecStorage">VecStorage</a>&lt;N, R, <a class="struct" href="../../../nalgebra/base/dimension/struct.Dynamic.html" title="struct nalgebra::base::dimension::Dynamic">Dynamic</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, R, <a class="struct" href="../../../nalgebra/base/dimension/struct.Dynamic.html" title="struct nalgebra::base::dimension::Dynamic">Dynamic</a>, Buffer = Self&gt;,&nbsp;</span></code><a href='#impl-Storage%3CN%2C%20R%2C%20Dynamic%3E' class='anchor'></a><a class='srclink' href='../../../src/nalgebra/base/vec_storage.rs.html#149-191' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.RStride-5' class="type"><code id='RStride.t-5'>type <a href='#associatedtype.RStride-5' class="type">RStride</a> = <a class="struct" href="../../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a></code></h4><h4 id='associatedtype.CStride-5' class="type"><code id='CStride.t-5'>type <a href='#associatedtype.CStride-5' class="type">CStride</a> = R</code></h4><h4 id='method.ptr-4' class="method hidden"><code id='ptr.v-5'>fn <a href='#method.ptr-4' class='fnname'>ptr</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.pointer.html">*const N</a></code><a class='srclink' href='../../../src/nalgebra/base/vec_storage.rs.html#156-158' title='goto source code'>[src]</a></h4><h4 id='method.shape-4' class="method hidden"><code id='shape.v-5'>fn <a href='#method.shape-4' class='fnname'>shape</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>R, <a class="struct" href="../../../nalgebra/base/dimension/struct.Dynamic.html" title="struct nalgebra::base::dimension::Dynamic">Dynamic</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code><a class='srclink' href='../../../src/nalgebra/base/vec_storage.rs.html#161-163' title='goto source code'>[src]</a></h4><h4 id='method.strides-4' class="method hidden"><code id='strides.v-5'>fn <a href='#method.strides-4' class='fnname'>strides</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../../../nalgebra/base/storage/trait.Storage.html#associatedtype.RStride" title="type nalgebra::base::storage::Storage::RStride">RStride</a>, Self::<a class="type" href="../../../nalgebra/base/storage/trait.Storage.html#associatedtype.CStride" title="type nalgebra::base::storage::Storage::CStride">CStride</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code><a class='srclink' href='../../../src/nalgebra/base/vec_storage.rs.html#166-168' title='goto source code'>[src]</a></h4><h4 id='method.is_contiguous-4' class="method hidden"><code id='is_contiguous.v-5'>fn <a href='#method.is_contiguous-4' class='fnname'>is_contiguous</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../../../src/nalgebra/base/vec_storage.rs.html#171-173' title='goto source code'>[src]</a></h4><h4 id='method.into_owned-4' class="method hidden"><code id='into_owned.v-5'>fn <a href='#method.into_owned-4' class='fnname'>into_owned</a>(self) -&gt; <a class="type" href="../../../nalgebra/base/storage/type.Owned.html" title="type nalgebra::base::storage::Owned">Owned</a>&lt;N, R, <a class="struct" href="../../../nalgebra/base/dimension/struct.Dynamic.html" title="struct nalgebra::base::dimension::Dynamic">Dynamic</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, R, <a class="struct" href="../../../nalgebra/base/dimension/struct.Dynamic.html" title="struct nalgebra::base::dimension::Dynamic">Dynamic</a>&gt;,&nbsp;</span></code><a class='srclink' href='../../../src/nalgebra/base/vec_storage.rs.html#176-179' title='goto source code'>[src]</a></h4><h4 id='method.clone_owned-4' class="method hidden"><code id='clone_owned.v-5'>fn <a href='#method.clone_owned-4' class='fnname'>clone_owned</a>(&amp;self) -&gt; <a class="type" href="../../../nalgebra/base/storage/type.Owned.html" title="type nalgebra::base::storage::Owned">Owned</a>&lt;N, R, <a class="struct" href="../../../nalgebra/base/dimension/struct.Dynamic.html" title="struct nalgebra::base::dimension::Dynamic">Dynamic</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, R, <a class="struct" href="../../../nalgebra/base/dimension/struct.Dynamic.html" title="struct nalgebra::base::dimension::Dynamic">Dynamic</a>&gt;,&nbsp;</span></code><a class='srclink' href='../../../src/nalgebra/base/vec_storage.rs.html#182-185' title='goto source code'>[src]</a></h4><h4 id='method.as_slice-4' class="method hidden"><code id='as_slice.v-5'>fn <a href='#method.as_slice-4' class='fnname'>as_slice</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;[N]</a></code><a class='srclink' href='../../../src/nalgebra/base/vec_storage.rs.html#188-190' 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/nalgebra/base/storage/trait.Storage.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>&#9166;</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 = "nalgebra";</script><script src="../../../aliases.js"></script><script src="../../../main.js"></script><script defer src="../../../search-index.js"></script></body></html>