I want to implement a heap data structure and want to apply the code to any type that supports comparison, i.e. < = > <= >= operations.
How to do this in F# as it is statically typed.
|
I want to implement a heap data structure and want to apply the code to any type that supports comparison, i.e. < = > <= >= operations. How to do this in F# as it is statically typed. |
|||
|
|
|
It does, but you have to annotate as follows:
Try replacing |
|||
|
|
|
For more on the specific cases of equality and comparison constraints, see http://lorgonblog.spaces.live.com/blog/cns!701679AD17B6D310!1621.entry and http://blogs.msdn.com/dsyme/archive/2009/11/08/equality-and-comparison-constraints-in-f-1-9-7.aspx |
|||
|
|