Releases: elm-community/list-extra
Releases · elm-community/list-extra
Add splitWhen
Remove singleton
This makes us compatible with core versions 5.1.0 and 5.1.1, which added this function to the core library.
5.0.1
5.0.0
4.0.0
Breaking Changes:
- Upgrade to Elm 0.18. Thanks @stil4m for this upgrade.
Additions:
allDifferent : List comparable -> Bool
, indicate if list has duplicate values. Thanks @skitoo for this addition.allDifferentBy : (a -> comparable) -> List a -> Bool
, indicate if list has duplicate values when supplied function are applyed on each values. Thanks @skitoo for this addition.groupsOfVarying : List Int -> List a -> List (List a)
, Thanks @patrickdet for this addition.stableSortWith : (a -> a -> Basics.Order) -> List a -> List a
, Similar toList.sortWith
, but is guaranteed to be a stable sort. Thanks @z5h for this addition.swapAt : Int -> Int -> List a -> Maybe.Maybe (List a)
, swap two values in a list by index. Thanks @roSievers for this addition.