我有以下示例代码:
import {none, some, chain} from 'fp-ts/lib/Option';
import {pipe} from 'fp-ts/lib/pipeable';
const f1 = (input: string) => {
return some(input + " f1")
};
const f2 = (input: string) => {
return some(input + "f2")
};
const f3 = (input: string) => {
return none;
};
const f4 = (input: string) => {
return some(input + "f4");
};
const result = pipe(
f1,
chain(f2),
chain(f3),
chain(f4),
)("X");
console.log("result", result);
我收到此编译时错误
Argument of type '(input: string) => Option<string>' is not assignable to parameter of type 'Option<string>'.
Type '(input: string) => Option<string>' is missing the following properties from type 'Some<string>': _tag, value
18 f1,
~~
src/index.ts:18:5
18 f1,
~~
Did you mean to call this expression?
我的代码有什么问题?
我希望f1
和f2
能够运行,并且其他功能不是因为none
返回f3
并最终输出为Some "X f1 f2"
< / p>
答案 0 :(得分:2)
fp-ts pipe
函数期望初始值"X"
作为第一个参数,以促进TypeScript从左到右的通用推断。
因此,与其他fp库(以咖喱方式传递初始值)相反,您可以按以下方式创建管道:
const result = pipe(
"X", // here is initial argument
f1,
chain(f2),
chain(f3),
chain(f4)
); // type: Option<string>, actual value is None
返回值将为None
-选项为None
后,当您None
对其进行选择时,它将保留为chain
(实现here) :
chain((n: number) => some(n*2))(none) // stays None
编辑:
flow
(与其他库的pipe
等效)是替代方法,其行为与示例中所希望的一样:
import { flow } from "fp-ts/lib/function";
const result3 = flow(
f1,
chain(f2),
chain(f3),
chain(f4)
)("X")
可能会出现类型问题。例如,有必要使用显式类型对第一个函数(f1
)的函数参数类型进行注释。还应考虑将pipe
视为维护者组成的新"blessed way"。