libsugar 2.4.1

libsugar provides syntactic sugar in the form of a library
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Chain Drop

/// Drop self
pub trait Void {
    /// Drop self
    fn void(self);
}

impl<T> Void for T {
    fn void(self) {}
}