pub trait Map<T> {
    fn map<F>(self, f: F) -> Self
    where
        F: FnOnce(T) -> T
; }
Expand description

Moved Copied from syntax::ptr::P of rustc.

Required methods

Transform the inner value, consuming self and producing a new P<T>.

Memory leak

This will leak self if the given closure panics.

Implementations on Foreign Types

Implementors