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