1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//! # Type Markers
//!
//! Dimension markers are type-level markers to represent dimensionality.
//!
//! - [`Dim1d`]: Marker for one-dimensional layouts
//! - [`Dim2d`]: Marker for two-dimensional layouts
//! - [`Dim3d`]: Marker for three-dimensional layouts
//!
//! Function markers are type-level markers to represent execution type.
//!
//! - [`Blocking`]: Marker for blocking execution
//! - [`Async`]: Marker for async execution
/// Marker type for one-dimensional space.
///
/// Used as a type parameter to indicate patterns and controls that operate in 1D.
;
/// Marker type for two-dimensional space.
///
/// Used as a type parameter to indicate patterns and controls that operate in 2D.
;
/// Marker type for three-dimensional space.
///
/// Used as a type parameter to indicate patterns and controls that operate in 3D.
;
/// Marker type for blocking execution.
///
/// Used as a type parameter to indicate execution will be blocking.
;
/// Marker type for async execution.
///
/// Used as a type parameter to indicate execution will be async.
;
/// Marker type for whether a constant is set.
;
/// Marker type for whether a constant is not set.
;