1
2
3
4
use crate::fn_graph::W;

/// Type alias for `W<'_, Option<T>>`.
pub type WOpt<'borrow, T> = W<'borrow, Option<T>>;