Instance Methodfwcd.swift-utils 4.6.2Utils
compose(_:)
ComposedAsyncBijection.swift:26func compose<B>(_ inner: B) -> ComposedAsyncBijection<Self, B> where B : AsyncBijection, Self.Value == B.Value
func compose<B>(_ inner: B) -> ComposedAsyncBijection<Self, B> where B : AsyncBijection, Self.Value == B.Value
s5Utils14AsyncBijectionPAAE7composeyAA08ComposedbC0Vyxqd__Gqd__AaBRd__5ValueQyd__AHRtzlF
What are these?G9GR
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 then<B>(_ outer: B) -> ComposedAsyncBijection<B, Self> where B : AsyncBijection, Self.Value == B.Value