Core concept
extension (s: String)
def capitalize2: String = s.head.toUpper + s.tailAdvertisement
How it works
Only in Scala 3. Migration needs.
Advertisement
Trade-offs + gotchas
Enriching types. DSL fluent APIs.
extension (s: String)
def capitalize2: String = s.head.toUpper + s.tailOnly in Scala 3. Migration needs.
Enriching types. DSL fluent APIs.