Hello ! Where can I find more information about ke...
# getting-started
m
Hello ! Where can I find more information about keyword
operator
? Example:
Copy code
class Pair<K, V>(val first: K, val second: V) {
    operator fun component1(): K {
        return first
    }

    operator fun component2(): V {
        return second
    }
}