code-gen 0.10.0

This library aids in code generation.
Documentation
1
2
3
4
5
/// An element that may be empty.
pub trait IsEmpty {
    /// Checks if the element is empty.
    fn is_empty(&self) -> bool;
}