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 |
Tags
- Hilt
- android
- boj
- Python
- MyVoca
- Coroutine
- 프로그래머스
- ProGuard
- pandas
- 백준
- Coroutines
- Gradle
- GitHub
- AWS
- TEST
- MiTweet
- 쿠링
- androidStudio
- Compose
- relay
- architecture
- Kotlin
- Codeforces
- livedata
- 코루틴
- textfield
- 코드포스
- 암호학
- activity
- Rxjava
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