pub trait CommentsExt: Comments {
    fn with_leading<F, Ret>(&self, pos: BytePos, op: F) -> Ret
    where
        F: FnOnce(&[Comment]) -> Ret
, { ... } fn with_trailing<F, Ret>(&self, pos: BytePos, op: F) -> Ret
    where
        F: FnOnce(&[Comment]) -> Ret
, { ... } }
👎Deprecated since 0.13.5:

helper methods are merged into Comments itself

Provided Methods

👎Deprecated since 0.13.5:

helper methods are merged into Comments itself

👎Deprecated since 0.13.5:

helper methods are merged into Comments itself

Implementors