Frage

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

War es hilfreich?

Lösung

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.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top