com.airbnb.epoxy.processor.Extensions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of epoxy-processor Show documentation
Show all versions of epoxy-processor Show documentation
Epoxy is a system for composing complex screens with a ReyclerView in Android.
The newest version!
package com.airbnb.epoxy.processor
internal fun String.lowerCaseFirstLetter(): String {
if (isEmpty()) {
return this
}
return Character.toLowerCase(get(0)) + substring(1)
}