Skip to content

Instantly share code, notes, and snippets.

@radex
Created March 2, 2013 20:01
Show Gist options
  • Save radex/5073020 to your computer and use it in GitHub Desktop.
Save radex/5073020 to your computer and use it in GitHub Desktop.
RACSequence *normalizedLongWords = [[words.rac_sequence
filter:^ BOOL (NSString *word) {
return [word length] >= 10;
}]
map:^(NSString *word) {
return [word lowercaseString];
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment