Instance Methodfwcd.swift-utils 4.6.2Utils
compose(_:)
ComposedBijection.swift:26func compose<B>(_ inner: B) -> ComposedBijection<Self, B> where B : Bijection, Self.Value == B.Value
func compose<B>(_ inner: B) -> ComposedBijection<Self, B> where B : Bijection, Self.Value == B.Value
s5Utils9BijectionPAAE7composeyAA08ComposedB0Vyxqd__Gqd__AaBRd__5ValueQyd__AHRtzlF
What are these?25XRT
import Utils
protocol Bijection : AsyncBijection
struct ComposedBijection<B, C> where B : Bijection, C : Bijection, B.Value == C.Value
associatedtype Value : Sendable
var inverse: InverseBijection<Self> { get }
func then<B>(_ outer: B) -> ComposedBijection<B, Self> where B : Bijection, Self.Value == B.Value