shex_ast/ir/
triple_expr_idx.rs

1#[derive(PartialEq, Eq, Hash, Clone, Copy, Debug, Default)]
2pub struct TripleExprIdx(usize);
3
4impl TripleExprIdx {
5    pub fn incr(&mut self) {
6        self.0 += 1;
7    }
8}