Macro Lt

Source
macro_rules! Lt {
    () => { ... };
    ($lt0:lifetime $(, $($rest:tt)*)?) => { ... };
    (..$Ty:ty) => { ... };
}
Expand description

Evaluates to an Lt implementation with the given list of lifetime specifiers.

§Usage

Lt!['a, 'b, 'c]

Another lifetime list can be concatenated using ..:

Lt!['a, 'b, 'c, ..L]