Created
May 27, 2018 11:50
-
-
Save bnayae/cdca7593c5b0324818c2e8a0667d33d1 to your computer and use it in GitHub Desktop.
This file contains 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
public static IObservable<TSource> Filter<TSource>( | |
this IObservable<TSource> source, | |
Func<TSource, bool> predicate) | |
{ | |
return source.Where<TSource>(predicate); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment