1
2
3
4
5
6
7
//! `NcDim`, `NcOffset`

/// Represents a dimension in rows or columns (alias of `u32`).
pub type NcDim = u32;

/// Represents an offset in rows or columns (alias of `i32`).
pub type NcOffset = i32;