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
/// A size.
pub trait Size {
    /// Return the number of rows.
    fn rows(&self) -> usize;

    /// Return the number of columns.
    fn columns(&self) -> usize;

    /// Return the number of rows and columns.
    #[inline(always)]
    fn dimensions(&self) -> (usize, usize) {
        (self.rows(), self.columns())
    }
}

impl Size for (usize, usize) {
    #[inline(always)]
    fn rows(&self) -> usize {
        self.0
    }

    #[inline(always)]
    fn columns(&self) -> usize {
        self.1
    }
}

impl Size for usize {
    #[inline(always)]
    fn rows(&self) -> usize {
        *self
    }

    #[inline(always)]
    fn columns(&self) -> usize {
        *self
    }
}