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.
Strings.toInt
and Strings.toFloat
APIs to be able to parse a string and convert it to a number.Optionals.is
and Optionals.equals
methods.Results.is
method..is
, .equals
and .equals_
APIs from Optional
..is
API from Result
.Optional
type is now covariant with respect to its type argument.
Cat
s are Animal
s, then all Optional<Cat>
s are now Optional<Animal>
s.Result
type is now covariant with respect to its type argument.get
function that returns an Optional
value.Arr.foldl
and Arr.foldr
now pass the item index in the callback function.Throttler.adaptable
could not re-throttle from within the callback function.Maybe
as an eventual replacement for Optional
.pipe
function to the Fun
API.Arr.find
methods #TINY-7138Regex
moduleStruct
. Please use TypeScript interfaces and functions instead.