[][src]Enum splashsurf_lib::density_map::DensityMap

pub enum DensityMap<I: Index, R: Real> {
    Standard(HashMap<I, R, FxBuildHasher>),
    DashMap(ReadDashMap<I, R, FxBuildHasher>),
}

A sparse density map

The density map contains values for all points of the background grid where the density is not trivially zero (which is the case when a point is outside of the compact support of any particles).

Variants

Standard(HashMap<I, R, FxBuildHasher>)
DashMap(ReadDashMap<I, R, FxBuildHasher>)

Implementations

impl<I: Index, R: Real> DensityMap<I, R>[src]

pub fn to_vec(&self) -> Vec<(I, R)>[src]

Converts the contained map into a vector of tuples of (flat_point_index, density)

pub fn len(&self) -> usize[src]

Returns the number of density entries

pub fn get(&self, flat_point_index: I) -> Option<R>[src]

Returns the density value at the specified flat point index

pub fn for_each<F: FnMut(I, R)>(&self, f: F)[src]

Calls a closure for each (flat_point_index, density_value) tuple in the map

Trait Implementations

impl<I: Clone + Index, R: Clone + Real> Clone for DensityMap<I, R>[src]

impl<I: Debug + Index, R: Debug + Real> Debug for DensityMap<I, R>[src]

impl<I: Index, R: Real> From<DashMap<I, R, BuildHasherDefault<FxHasher>>> for DensityMap<I, R>[src]

impl<I: Index, R: Real> From<HashMap<I, R, BuildHasherDefault<FxHasher>>> for DensityMap<I, R>[src]

Auto Trait Implementations

impl<I, R> !RefUnwindSafe for DensityMap<I, R>[src]

impl<I, R> Send for DensityMap<I, R>[src]

impl<I, R> Sync for DensityMap<I, R>[src]

impl<I, R> Unpin for DensityMap<I, R> where
    I: Unpin,
    R: Unpin
[src]

impl<I, R> UnwindSafe for DensityMap<I, R> where
    I: UnwindSafe,
    R: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,