How can I sort list with IO Compare function?
sortWith :: [String] -> (String -> String -> IO Ordering) -> IO [String]
Sortby expects (a->a->Ordering) and I don't know, how to deal with it. I am too lazy to implement quick sort myself.
|
I'm afraid there is no simple way. If it was possible to lift
to
you could see the order of comparisons in implementation of In general, it's easy to go from Possible options:
|
|||||||||
|
|
The For simplicity, because I don't have a compiler so I cannot test my code, I will implement insertion sort here:
As I said, I haven't tested this code, but it could/should work. |
|||||||
|
|
Oh, I've done this one before! Merge sort with monadic comparator:
From my blog post: http://unknownparallel.wordpress.com/2012/07/03/using-monadic-effects-to-reverse-a-merge-sort/ |
|||
|
|
|
Was it Larry Wall who said that laziness is one of the 3 great virtues of a programmer? It seems you want to transform a function of type (a -> a -> b) into a function of type (a -> a -> c b). Let's plug that into Hoogle. Now, if you know that IO is a Monad, you'll see about the 10th match down in liftM2. Check the type of (liftM2 sortBy), is that what you want? |
|||||
|
Boolmean?sortByhas type(a -> a -> Ordering) -> [a] -> [a], which uses a function that returns anOrdering, not aBool. – dflemstr Jul 13 '12 at 11:46