mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-02 09:40:15 +00:00
8 lines
201 B
Rust
8 lines
201 B
Rust
//! `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;
|