gpt4 book ai didi

recursion - 如何定义相互递归类型

转载 作者:行者123 更新时间:2023-12-02 22:19:13 24 4
gpt4 key购买 nike

我有以下代码:

type cellInfo('a) = {
index: int,
column: column('a),
id: string
};

type cellInfoFn('a) = cellInfo('a) => ReasonReact.reactElement;

type column('a) = {
header: string,
accessor: accessor('a),
id: option(string),
cell: cellInfoFn('a),
};

了解每种类型如何相互依赖。

我收到以下错误消息:

[1]   12 │ type cellInfo('a) = {
[1] 13 │ index: int,
[1] 14 │ column: column('a),
[1] 15 │ id: string
[1] 16 │ };
[1]
[1] This type constructor's parameter, `column`, can't be found. Is it a typo?

如何处理相互递归的类型定义?

最佳答案

相互递归定义必须用分隔。这适用于 let 定义和 type 定义:

type cellInfo('a) = {
index: int,
column: column('a),
id: string
}

and cellInfoFn('a) = cellInfo('a) => ReasonReact.reactElement

and column('a) = {
header: string,
accessor: accessor('a),
id: option(string),
cell: cellInfoFn('a),
};

关于recursion - 如何定义相互递归类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49526727/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com