Closed zolotov closed 2 years ago
Now SortedSet#forked always returns this, even if it was linearized before. This may lead to the following behavior:
SortedSet#forked
this
val set = SortedSet<Int>().add(1).linear().forked() set.add(2) println(set.toList()) === [1, 2]
Thanks for catching this! I'll cut a new release in the near future.
Now
SortedSet#forked
always returnsthis
, even if it was linearized before. This may lead to the following behavior: