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