Type inference on ToString() vs string operator
问题 Note: This question is somewhat related to my previous one, but it actually touches the issue from different perspective Consider following snippet: let toStr a = a.ToString() let strOp a = string a let intToStr = 5 |> toStr let floatToStr = 5.0 |> toStr let intStrOp = 5 |> strOp let floatStrOp = 5.0 |> strOp //type inference error While the strOp function uses what appears to be more elegant solution, and is able to convert a unit value to string as well, it seems not to be truly generic