在 F# 中从 union 中随机选择一个实例
在 F# 中,给定
type MyType = A |乙| C | d |电子| F | G
如何随机定义 MyType 的实例?
In F#, given
type MyType = A | B | C | D | E | F | G
How do I randomly define an instance of MyType?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该可行:
此代码假设联合案例都是无效的,并且您使用的类型实际上是联合类型,但是很容易显式检查这些假设并在需要时抛出有意义的异常。
This ought to work:
This code assumes that the union cases are all nullary and that the type you're using is actually a union type, but it would be easy to explicitly check those assumptions and throw meaningful exceptions if desired.
选择一个随机数,然后将该数字与返回不同时刻的不同分支进行模式匹配?
Select a random number, then pattern match that number with different branches returning a different instant?