All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- The
HasKey<K, V>
helper type erroneously accepted types that didn't have the keyK
. - The parameter order of
propEquals
andnthEquals
wasn't actually changed in #239. This is now fixed.
- Renamed various array-related functions to use
nth
as a base name instead ofat
. Full list of affected functions below. (#236)
Old name | New name |
---|---|
at |
nth |
atOr |
nthOr |
setAt |
setNth |
modifyAt |
modifyNth |
removeAt |
removeNth |
atEquals |
nthEquals |
atSatisfies |
nthSatisfies |
- Changed the parameter order of
propEquals
,propSatisfies
,nthEquals
andnthSatisfies
. Now the key or index is the first parameter while the value or predicate is the second parameter. (#239)
- Initial public release