This site requires javascript.
Android Code Search
file:androidx/collection/IntLongMap.kt function:intLongMapOf
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/
IntLongMap.kt
content_copy
Preview
48:
49:
50:
51:
52:
53:
/** Returns a new [MutableIntLongMap]. */
public
fun
intLongMapOf
(): IntLongMap = EmptyIntLongMap
/** Returns a new [IntLongMap] with [key1] associated with [value1]. */
public
fun
intLongMapOf
(key1: Int, value1: Long): IntLongMap =
MutableIntLongMap().also { map -> map[key1] = value1 }
58:
59:
60:
*/
public
fun
intLongMapOf
(
key1: Int,
73:
74:
75:
*/
public
fun
intLongMapOf
(
key1: Int,
91:
92:
93:
*/
public
fun
intLongMapOf
(
key1: Int,
112:
113:
114:
*/
public
fun
intLongMapOf
(
key1: Int,
133:
134:
135:
136:
137:
138:
/** Returns a new [MutableIntLongMap]. */
public
fun
mutable
IntLongMapOf
(): MutableIntLongMap = MutableIntLongMap()
/** Returns a new [MutableIntLongMap] with [key1] associated with [value1]. */
public
fun
mutable
IntLongMapOf
(key1: Int, value1: Long): MutableIntLongMap =
MutableIntLongMap().also { map -> map[key1] = value1 }
143:
144:
145:
*/
public
fun
mutable
IntLongMapOf
(
key1: Int,
158:
159:
160:
*/
public
fun
mutable
IntLongMapOf
(
key1: Int,
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