How can sort a [MVar a] list? using a as the element to compare in the sort. E.g:
sortList :: [MVar Int] -> [MVar Int]
I cannot think a ways without breaking other threads.
Update: I need to sort the list, because I want to implement a reference count like MVar and return always the one with least references. Something like:
getLeastUsed :: [MVar Int] -> MVar Int
getLeastUsed = head . sortList
And in the thread I want to increase the 'Int'.
Update: I was notice by answers that the rigth signature need IO because MVar