Coproduct6
public final class Coproduct6<A, B, C, D, E, F> : Coproduct6Of<A, B, C, D, E, F>
Represents a sum type of 6 different types.
-
Creates an instance of a coproduct providing a value of the first type.
Declaration
Swift
public static func first(_ a: A) -> Coproduct6<A, B, C, D, E, F>
Parameters
a
Value of the first type of the coproduct.
Return Value
A coproduct with a value of the first type.
-
Creates an instance of a coproduct providing a value of the second type.
Declaration
Swift
public static func second(_ b: B) -> Coproduct6<A, B, C, D, E, F>
Parameters
b
Value of the second type of the coproduct.
Return Value
A coproduct with a value of the second type.
-
Creates an instance of a coproduct providing a value of the third type.
Declaration
Swift
public static func third(_ c: C) -> Coproduct6<A, B, C, D, E, F>
Parameters
c
Value of the third type of the coproduct.
Return Value
A coproduct with a value of the third type.
-
Creates an instance of a coproduct providing a value of the fourth type.
Declaration
Swift
public static func fourth(_ d: D) -> Coproduct6<A, B, C, D, E, F>
Parameters
d
Value of the fourth type of the coproduct.
Return Value
A coproduct with a value of the fourth type.
-
Creates an instance of a coproduct providing a value of the fifth type.
Declaration
Swift
public static func fifth(_ e: E) -> Coproduct6<A, B, C, D, E, F>
Parameters
e
Value of the fifth type of the coproduct.
Return Value
A coproduct with a value of the fifth type.
-
Creates an instance of a coproduct providing a value of the sixth type.
Declaration
Swift
public static func sixth(_ f: F) -> Coproduct6<A, B, C, D, E, F>
Parameters
f
Value of the sixth type of the coproduct.
Return Value
A coproduct with a value of the sixth type.
-
Applies a function depending on the content of the coproduct.
Declaration
Swift
public func fold<Z>(_ fa: (A) -> Z, _ fb: (B) -> Z, _ fc: (C) -> Z, _ fd: (D) -> Z, _ fe: (E) -> Z, _ ff: (F) -> Z) -> Z
Parameters
fa
Function to apply with a value of the first type.
fb
Function to apply with a value of the second type.
fc
Function to apply with a value of the third type.
fd
Function to apply with a value of the fourth type.
fe
Function to apply with a value of the fifth type.
ff
Function to apply with a value of the sixth type.
Return Value
A value resulting of the application of the corresponding function based on the content of the coproduct.
-
Retrieves the value of the first type, if present.
Declaration
Swift
public var first: Option<A> { get }
-
Retrieves the value of the second type, if present.
Declaration
Swift
public var second: Option<B> { get }
-
Retrieves the value of the third type, if present.
Declaration
Swift
public var third: Option<C> { get }
-
Retrieves the value of the fourth type, if present.
Declaration
Swift
public var fourth: Option<D> { get }
-
Retrieves the value of the fifth type, if present.
Declaration
Swift
public var fifth: Option<E> { get }
-
Retrieves the value of the sixth type, if present.
Declaration
Swift
public var sixth: Option<F> { get }