Skip to content

Instantly share code, notes, and snippets.

@huonw
Forked from cnd/gist:7351205
Created November 7, 2013 08:41
Show Gist options
  • Save huonw/7351219 to your computer and use it in GitHub Desktop.
Save huonw/7351219 to your computer and use it in GitHub Desktop.
fn ifV<'a, T>(rc : &str, star: &'a T) -> Option<&'a T> {
if (Path::new( rc )).exists() {
Some(star)
} else {
None
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment