toggle menu
maplibre-compose
0.1.0
common
switch theme
search in API
maplibre-compose
/
dev.sargunv.maplibrecompose.core.expression
/
ExpressionScope
/
in
in
@
JvmName
(
name
=
"inList"
)
open
fun
in
(
needle
:
Expression
<
*
>
,
haystack
:
Expression
<
List
<
*
>
>
)
:
Expression
<
Boolean
>
Determines whether an item exists in an array.
@
JvmName
(
name
=
"inString"
)
open
fun
in
(
needle
:
Expression
<
String
>
,
haystack
:
Expression
<
String
>
)
:
Expression
<
Boolean
>
Determines whether a substring exists in a string.
@
JvmName
(
name
=
"inListInfix"
)
open
infix
fun
Expression
<
*
>
.
in
(
other
:
Expression
<
List
<
*
>
>
)
:
Expression
<
Boolean
>
@
JvmName
(
name
=
"inStringInfix"
)
open
infix
fun
Expression
<
String
>
.
in
(
other
:
Expression
<
String
>
)
:
Expression
<
Boolean
>