Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
resources
/
intentionDescriptions
/
ReplaceSubstringWithDropLastIntention
/
description.html
blob: 7482e9e213252d17ef9c9a548d0179583991b580 [
file
] [
log
] [
blame
]
<html>
<body>
This intention replaces call like
<code>
s.substring(0, s.length - x)
</code>
with
<code>
s.dropLast(x)
</code>
call.
</body>
</html>