Please I am still learning F#. I want to know if is possible to use function signatures or type abbreviations as fields in F#
Example
type FSigns =
| A of (int -> int -> float)
| B of (bool -> string)
Can they also work like this:
type FSigns’ =
| Calc of arithmetic:(int -> int -> int)
| Stats of avg:(float list -> float)
Can I use type abbreviations as well…
Thanks for helping. Great F#!