Is there a Kotlin stdlib function to find the difference between two sets? So given two sets [1, 2, 3] and [1, 3, 5] the difference would be
[1, 2, 3]
[1, 3, 5]