Function

then(_:file:line:)

Creates a Then based on value.

Declaration

func then<WrappedType>(_ value: WrappedType, file: StaticString = #file, line: UInt = #line) -> Then<WrappedType>

Return Value

A new Then<WrappedType> based on value.

Parameters

value

Object that will be verified.

file

The file name where the method is called.

line

The line where the method is called.

Discussion