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