Interface Tuple3<A,B,C>

All Superinterfaces:
Serializable
All Known Implementing Classes:
Tuple3.Tuple3Impl

public sealed interface Tuple3<A,B,C> extends Serializable permits Tuple3.Tuple3Impl<A,B,C>
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static final class 
     
  • Method Summary

    Modifier and Type
    Method
    Description
    _1()
     
    _2()
     
    _3()
     
    default <D> Tuple4<A,B,C,D>
    append(D d)
     
    default <RES> RES
    map(Fn3<A,B,C,RES> f)
     
    static <A, B, C> Tuple3<A,B,C>
    of(A a, B b, C c)
     
  • Method Details

    • _1

      A _1()
    • _2

      B _2()
    • _3

      C _3()
    • map

      default <RES> RES map(Fn3<A,B,C,RES> f)
    • append

      default <D> Tuple4<A,B,C,D> append(D d)
    • of

      static <A, B, C> Tuple3<A,B,C> of(A a, B b, C c)