Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 366 Bytes

CHANGELOG.md

File metadata and controls

13 lines (7 loc) · 366 Bytes

Changelog

2.1.x

Added decodeBoolean, encodeBoolean, decodeList, encodeList, decodeNumeral and encodeNumeral

2.0.x

Parameter order in foldr reducing function has flipped to list element followed by accumulator to match haskell

foldr :: Foldable t => (a -> b -> b) -> b -> t a -> b

foldl :: Foldable t => (b -> a -> b) -> b -> t a -> b