Package io.vavr

Class API.For2Try<T1,​T2>

  • Enclosing class:
    API

    public static class API.For2Try<T1,​T2>
    extends java.lang.Object
    For-comprehension with two Trys.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private Try<T1> ts1  
      private Try<T2> ts2  
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private For2Try​(Try<T1> ts1, Try<T2> ts2)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      <R> Try<R> yield​(java.util.function.BiFunction<? super T1,​? super T2,​? extends R> f)
      Yields a result for elements of the cross product of the underlying Trys.
      • Methods inherited from class java.lang.Object

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

      • ts1

        private final Try<T1> ts1
      • ts2

        private final Try<T2> ts2
    • Constructor Detail

      • For2Try

        private For2Try​(Try<T1> ts1,
                        Try<T2> ts2)
    • Method Detail

      • yield

        public <R> Try<R> yield​(java.util.function.BiFunction<? super T1,​? super T2,​? extends R> f)
        Yields a result for elements of the cross product of the underlying Trys.
        Type Parameters:
        R - type of the resulting Try elements
        Parameters:
        f - a function that maps an element of the cross product to a result
        Returns:
        an Try of mapped results