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