Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
resources
/
intentionDescriptions
/
LoopToLazyCallChainIntention
/
after.kt.template
blob: b007c74f7d48bcbac5dbdfacb5fffce60274e7d3 [
file
] [
log
] [
blame
]
fun foo
(
list
:
List
<
String
>)
{
val sum
=
<spot>
list
.
asSequence
()
.
map
{
it
.
calcSomething
()
}
.
filter
{
it
>
0
}
.
sumBy
{
it
}</
spot
>
}