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

/// Represents a dimension in rows or columns. Can't be negative.
pub type NcDim = u32;

/// Represents an offset in rows or columns. Can be negative.
pub type NcOffset = i32;