Is there Big O notation documentation on collectio...
# getting-started
h
Is there Big O notation documentation on collection functions like https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/partition.html ? I found it pretty nice in the Apple documentation that they mention the complexity of the function https://developer.apple.com/documentation/swift/array/3017524-partition
e
to an extent, this can't be guaranteed in absolute because the complexity of the Iterable isn't specified. but it would be nice to at least document what it is in terms of that. there are quite a few other functions where the kdoc is less useful than the javadoc of the equivalent function it mirrors
1
h
Thanks 🙂