Exemple #1
0
 public IObservable <TOutput> Apply(IObservable <TInput> input)
 {
     return(Selector.Apply(input)
            .Select(ProjectorFunction)
            .DistinctUntilChanged());
 }
Exemple #2
0
        public TOutput Apply(TInput input)
        {
            var selectorResult = Selector.Apply(input);

            return(ProjectorFunction(selectorResult));
        }