Tuple6

public enum Tuple6<A, B, C, D, E, F>

Utility optics over tuples of arity 6.

  • Obtains a Lens that focuses on the first component of a tuple

    Declaration

    Swift

    public static var _0: Lens<(A, B, C, D, E, F), A> { get }
  • Obtains a Lens that focuses on the second component of a tuple

    Declaration

    Swift

    public static var _1: Lens<(A, B, C, D, E, F), B> { get }
  • Obtains a Lens that focuses on the third component of a tuple

    Declaration

    Swift

    public static var _2: Lens<(A, B, C, D, E, F), C> { get }
  • Obtains a Lens that focuses on the forth component of a tuple

    Declaration

    Swift

    public static var _3: Lens<(A, B, C, D, E, F), D> { get }
  • Obtains a Lens that focuses on the fifth component of a tuple

    Declaration

    Swift

    public static var _4: Lens<(A, B, C, D, E, F), E> { get }
  • Obtains a Lens that focuses on the sixth component of a tuple

    Declaration

    Swift

    public static var _5: Lens<(A, B, C, D, E, F), F> { get }