Class OperatorMapPair.OuterInnerMapper<T,​U,​R>

  • All Implemented Interfaces:
    Func1<U,​R>, Function
    Enclosing class:
    OperatorMapPair<T,​U,​R>

    static final class OperatorMapPair.OuterInnerMapper<T,​U,​R>
    extends java.lang.Object
    implements Func1<U,​R>
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) T outer  
      (package private) Func2<? super T,​? super U,​? extends R> resultSelector  
    • Constructor Summary

      Constructors 
      Constructor Description
      OuterInnerMapper​(T outer, Func2<? super T,​? super U,​? extends R> resultSelector)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      R call​(U inner)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • outer

        final T outer
      • resultSelector

        final Func2<? super T,​? super U,​? extends R> resultSelector
    • Constructor Detail

      • OuterInnerMapper

        public OuterInnerMapper​(T outer,
                                Func2<? super T,​? super U,​? extends R> resultSelector)
    • Method Detail

      • call

        public R call​(U inner)
        Specified by:
        call in interface Func1<T,​U>