Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- activity
- 프로그래머스
- 백준
- Coroutine
- TEST
- Kotlin
- 코루틴
- relay
- architecture
- Coroutines
- Gradle
- ProGuard
- MyVoca
- livedata
- Python
- boj
- Rxjava
- GitHub
- Hilt
- 쿠링
- 암호학
- AWS
- android
- androidStudio
- 코드포스
- pandas
- MiTweet
- textfield
- Codeforces
- Compose
Archives
- Today
- Total
목록mutableMapOf (1)
이동식 저장소
mutableMapOf()의 내부 구현
Kotlin의 ``mutableMapOf()`` 함수는 내부적으로 ``LinkedHashMap()``을 반환한다. /** * Returns an empty new [MutableMap]. * * The returned map preserves the entry iteration order. * @sample samples.collections.Maps.Instantiation.emptyMutableMap */ @SinceKotlin("1.1") @kotlin.internal.InlineOnly public inline fun mutableMapOf(): MutableMap = LinkedHashMap() Kotlin ``LinkedHashMap``은 Java의 ``LinkedHashMap``으로 ``ty..
Primary/Kotlin
2024. 2. 3. 20:15