整理我的相互递归类型
是否可以将相互递归类型 ([
) 分布在不同的文件中?这些类型直接位于命名空间下。
我的解决方案是将它们放在一个大文件中并使用 type ... and ... and ... 等构造。这是唯一的方法吗?
Is it possible to have mutual recursive types ([<Struct>]
) spread across different files? The types are directly under a namespace.
My solution is to put them in one big file and use type ... and ... and ... etc
construction. Is it the only way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用一种称为解开递归结的技术,在其中将一个参数化为另一个。
所以这:
变成:
You can use a technique called untying the recursive knot where you parameterize one over the other.
So this:
becomes: