We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb0b0d8 commit 3adf852Copy full SHA for 3adf852
Tool/Sources/LangChain/Chain.swift
@@ -116,7 +116,7 @@ public extension Chain {
116
ConnectedChain(chainA: self, chainB: another)
117
}
118
119
- func mapped<NewOutput>(_ map: @escaping (Output) -> NewOutput) -> MappedChain<Self, NewOutput> {
+ func map<NewOutput>(_ map: @escaping (Output) -> NewOutput) -> MappedChain<Self, NewOutput> {
120
MappedChain(chain: self, map: map)
121
122
0 commit comments