CamilleBC
fun List<E>.getDifference(other: List<E>) = this.union(other) - this.intersect(other)
spand
fun <E> List<E>.getDifference(other: List<E>) = this.union(other) - this.intersect(other)
Shawn
A modern programming language that makes developers happier.