Since I have a ton of IDisposables that I need to take care of a while down the line, I set up a list of disposables and a pass-through function to add items to it as a side effect:
let mutable disposables = []
let (~-) (x:'a) = disposables <- x :: disposables; x
So that I could hopefully do this:
let thing1 = -new Form()
let thing2 = -new Control()
for i in disposables do i.Dispose()
The problem is that F# automatically constrains 'a to IDisposable, with the warning message:
This construct causes code to be less generic than indicated by the type annotations. The type variable 'a has been constrained to be type 'IDisposable'.
So then the return type of operator ~- becomes IDisposable, which defeats the convenience of the function.
Is there a way to prevent F# from creating this constraint?
disposablesis a list ofIDisposable, then what canxbe but anIDisposableitself? In any case, you might givedisposablesan explicit type and see what you get—I’m a Haskeller, so this is just conjecture. – Jon Purdy Jul 28 '12 at 1:01let inline (~-) (x:'a) = disposables <- x :: disposables; xfix this? – John Palmer Jul 28 '12 at 1:07Local class bindings cannot be marked inline. Consider lifting the definition out of the class or else do not mark it as inline. – Rei Miyasaka Jul 28 '12 at 1:09xto be the type that I sent in, notIDisposable. Annotating a type ondisposablesdoesn't seem to change much :( – Rei Miyasaka Jul 28 '12 at 1:11