moogle 0.4.4

data structures for relational code
1
2
3
4
5
6
7
use std::{fmt::Debug};

impl<T: Debug> Debug for super::FloatingPom<T> {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        self.elements.fmt(f)
    }
}