Tagged Questions

3
votes
1answer
219 views

Implementing custom comparison with CustomComparison and CustomEquality in F# tuple

I'm here to ask a specific topic - I really found few info about this on the web. I'm implementing a F# version of Minimax algorithm. The problem I'm having now is that I want to compare Leaf of my ...
2
votes
1answer
251 views

Comparing generic fields

I have some generic types, like the following: public struct Tuple<T1, T2> { ... } public struct Tuple<T1, T2, T3> { ... } etc. These should in theory be able to compare themselves ...
-2
votes
2answers
45 views

Implementing Icomparable on a Taxpayer class to sort based on taxOwed

i am not being able to implemenet Icomparable CompareTo to compare Taxpayer objects based on tax owed ..can someone help me with the icomparable implementatioin of Taxpayer class?? I want to implement ...