質問

I want to overide the type detection of ml and want the argument to be allowed type as specified.

役に立ちましたか?

解決

The way to do this is to use

Unsafe.cast

, which has type 'a -> 'b.

You should never use this -- if you think you need to, you probably should instead consider whether what you're trying to do is really a good idea. It's called unsafe for a reason.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top