Created
May 5, 2018 18:41
-
-
Save MaikKlein/88be3598a1b293ab65f74b067c0ab41f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pub fn as_start_named(&self, name: &str) -> Option<&Start> { | |
self.as_start() | |
.into_iter() | |
.filter(|start| start.name == name) | |
.next() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment