Skip to content

Instantly share code, notes, and snippets.

@bnayae
Created May 27, 2018 11:50
Show Gist options
  • Save bnayae/cdca7593c5b0324818c2e8a0667d33d1 to your computer and use it in GitHub Desktop.
Save bnayae/cdca7593c5b0324818c2e8a0667d33d1 to your computer and use it in GitHub Desktop.
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