use super::Cut;
use crate::metis::{DotSet, VersionVector};
impl Cut {
#[must_use]
pub const fn as_vector(&self) -> &VersionVector {
&self.0
}
#[must_use]
pub fn into_vector(self) -> VersionVector {
self.0
}
#[must_use]
pub fn to_have_set(&self) -> DotSet {
DotSet::from_cut(&self.0)
}
}