Skip to content

v0.8.0

Compare
Choose a tag to compare
@passsy passsy released this 01 Oct 10:36
· 85 commits to master since this release
18ff094

New package:kt_dart/standard.dart library containing Kotlins loved standard extensions

  • #120 Standard extensions let, also, takeIf and takeUnless
  • #120 TODO([String message]) top-level function which throws NotImplementedException
  • #120 repeat(int times, void Function(int) action) top-level function

More cool updates

  • #124 KtList.of and KtSet.of now allow null as parameters. Same for listOf and setOf
  • #131 Chain Comparators with the new thenBy and thenByDescending functions.
  • #126 Allow const .empty() constructors for KtList, KtMap and KtSet (Thanks @TimWhiting)
  • #127 plus, minus operator overrides for KtSet, returning KtSet and not KtList as the KtIterable operators do