// This F# language suggestion wants a way to name collections of constraints: | |
// http://fslang.uservoice.com/forums/245727-f-language/suggestions/8509687-add-constraints-as-a-language-construct | |
// | |
// This is a type alias X<T> = T, so X<int> = int etc. | |
type X<'T> = 'T | |
// This is a type alias X<T> = T which adds a constraint | |
type WithStruct<'T when 'T : struct> = 'T | |
// Use it like this: | |
let f1 (x: WithStruct<'T>) : 'T = x | |
// This shows a type alias can imply multiple named constraintsm which gives a way of naming collections of constraints: | |
type WithFG< ^T when ^T : (member F : int -> unit) | |
and ^T : (member G : int -> unit) > = ^T | |
// Use it like this: | |
let inline f2 (x: WithFG< ^T >) = | |
(^T : (member F : int -> unit) (x, 1)) | |
(^T : (member G : int -> unit) (x, 2)) | |
This comment has been minimized.
This comment has been minimized.
What's the advantage of using "constraint aliases" over let inline fnF x n = (^T : (member F : int -> unit) (x, n))
let inline fnG x n = (^T : (member G : int -> unit) (x, n))
let inline f3 x =
fnF x 1
fnG x 2 every time |
This comment has been minimized.
This comment has been minimized.
Thanks Don for sharing the Gist but unfortunately the type alias trick does not solve the problem for purely static member constraints. In the following example for instance I want to express the same set of constraints for both ^T1 and ^T2 without having to repeat them twice.
Following your trick I could define a type alias encoding the two constraints (write and flush) but my constraints being entirely static I have no way to refer to the type alias it in a type annotation since there exist no variable of static type. Do you have another trick up your sleeve for the above example? An alternative suggestion would be to add support for generic type constraints of the form
which currently gives me an error:
|
This comment has been minimized.
This comment has been minimized.
This would greatly help me. |
This comment has been minimized.
they can name, but don't seem to allow to use without restating the constraint:
So I'm still looking for how it is helping?