Instance Methodfwcd.swift-utils 4.6.2Utils
then(_:)
ComposedAsyncBijection.swift:22func then<B>(_ outer: B) -> ComposedAsyncBijection<B, Self> where B : AsyncBijection, Self.Value == B.Value
func then<B>(_ outer: B) -> ComposedAsyncBijection<B, Self> where B : AsyncBijection, Self.Value == B.Value
s5Utils14AsyncBijectionPAAE4thenyAA08ComposedbC0Vyqd__xGqd__AaBRd__5ValueQyd__AHRtzlF
What are these?8MFUS
import Utils
protocol AsyncBijection : Sendable
struct ComposedAsyncBijection<B, C> where B : AsyncBijection, C : AsyncBijection, B.Value == C.Value
associatedtype Value : Sendable
var inverse: InverseAsyncBijection<Self> { get }
func compose<B>(_ inner: B) -> ComposedAsyncBijection<Self, B> where B : AsyncBijection, Self.Value == B.Value