#kotlin
Read more stories on Hashnode
Articles with this tag
안드로이드에서 사용되는 위임 · 이전 안드로이드 공부를 하던 중 by 키워드를 사용하는 예제를 본 적이 있었다. 검색을 해보니 위임을 위한 키워드라는 것을 알 수 있었다. 그래서 코틀린 공식 문서를 찾아 읽어 얕은 이해를 하려고 했었다. 하지만 실제로 위임을 사용한 구현을...
Filtering is one of the most popular tasks in collection processing. In Kotlin, filtering conditions are defined by predicates – lambda functions that...
With some common kinds of properties, even though you can implement them manually every time you need them, it is more helpful to implement them once,...
The Kotlin standard library contains several functions whose sole purpose is to execute a block of code within the context of an object. When you call...
kotlin-stdlib / kotlin / LongArray · Summary For Native, An array of longs. Constructors init <init>(size: Int, init: (Int) -> Long) Creates a new...
kotlin-stdlib / kotlin.collections / fold · Summary Accumulates value starting with initial value and applying operation from left to right to current...