Instance Methodfwcd.swift-utils 4.6.2Utils
then(_:)
ComposedBijection.swift:22func then<B>(_ outer: B) -> ComposedBijection<B, Self> where B : Bijection, Self.Value == B.Value
func then<B>(_ outer: B) -> ComposedBijection<B, Self> where B : Bijection, Self.Value == B.Value
s5Utils9BijectionPAAE4thenyAA08ComposedB0Vyqd__xGqd__AaBRd__5ValueQyd__AHRtzlF
What are these?15HAB
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 compose<B>(_ inner: B) -> ComposedBijection<Self, B> where B : Bijection, Self.Value == B.Value