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: TOuterOuter timestamp.
inner: PointStamp<T>Inner timestamp.