Closed vmchale closed 5 months ago
As of GHC 9.10, sortOn for nonempty lists is part of base.
sortOn
base
Since the change in question was to the base library and not the compiler itself, can you use #if MIN_VERSION_base(4,20,0) instead?
#if MIN_VERSION_base(4,20,0)
Thanks! Released as https://hackage.haskell.org/package/extra-1.7.15
As of GHC 9.10,
sortOn
for nonempty lists is part ofbase
.