1
2
3
4
5
6
7
8
9
10
11
use crate::objects::Cycle;

/// Build a [`Cycle`]
pub trait BuildCycle {
    /// Build an empty cycle
    fn empty() -> Cycle {
        Cycle::new([])
    }
}

impl BuildCycle for Cycle {}