Confused this "get()" usage. Any document talks about this usage?
val intList: List<Int> get() = concurrentLinkedQueue.toList()
>Solution :
These properties are called "computed properties", since they don’t have a backing field: in Java, you’d implement them using methods, rather than fields. You can find more examples in Properties: Getters and setters.