This site requires javascript.
Android Code Search
file:androidx/collection/LongIntMap.kt function:longIntMapOf
search
close
info_outline
more_vert
Result 1 of 1
content_copy
Search Result Root
androidx/platform/frameworks/support
keyboard_arrow_right
Branch
Branch
androidx-main
keyboard_arrow_right
Search Result Path
collection/collection/src/commonMain/kotlin/androidx/collection/
LongIntMap.kt
content_copy
Preview
48:
49:
50:
51:
52:
53:
/** Returns a new [MutableLongIntMap]. */
public
fun
longIntMapOf
(): LongIntMap = EmptyLongIntMap
/** Returns a new [LongIntMap] with [key1] associated with [value1]. */
public
fun
longIntMapOf
(key1: Long, value1: Int): LongIntMap =
MutableLongIntMap().also { map -> map[key1] = value1 }
58:
59:
60:
*/
public
fun
longIntMapOf
(
key1: Long,
73:
74:
75:
*/
public
fun
longIntMapOf
(
key1: Long,
91:
92:
93:
*/
public
fun
longIntMapOf
(
key1: Long,
112:
113:
114:
*/
public
fun
longIntMapOf
(
key1: Long,
133:
134:
135:
136:
137:
138:
/** Returns a new [MutableLongIntMap]. */
public
fun
mutable
LongIntMapOf
(): MutableLongIntMap = MutableLongIntMap()
/** Returns a new [MutableLongIntMap] with [key1] associated with [value1]. */
public
fun
mutable
LongIntMapOf
(key1: Long, value1: Int): MutableLongIntMap =
MutableLongIntMap().also { map -> map[key1] = value1 }
143:
144:
145:
*/
public
fun
mutable
LongIntMapOf
(
key1: Long,
158:
159:
160:
*/
public
fun
mutable
LongIntMapOf
(
key1: Long,
unfold_more
Show 2 more matching lines
chevron_left
1
chevron_right
Results per page
10
We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience.
Got it
Help
Open branch androidx-main