Skip to main content

DynTime

Type Alias DynTime 

Source
pub type DynTime<TOuter, T> = Product<TOuter, PointStamp<T>>;
Expand description

Timestamp shape of a dynamic iterative scope: an outer timestamp paired with a per-level PointStamp of loop counters.

Aliased Type§

pub struct DynTime<TOuter, T> {
    pub outer: TOuter,
    pub inner: PointStamp<T>,
}

Fields§

§outer: TOuter

Outer timestamp.

§inner: PointStamp<T>

Inner timestamp.