Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ProgramText (0.17 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ProgramSource.kt

     */
    data class ProgramText private constructor(val text: String) {
    
        companion object {
    
            internal
            fun from(string: String) =
                ProgramText(string.replace("\r\n", "\n"))
        }
    
        internal
        fun erase(ranges: List<IntRange>): ProgramText =
            if (ranges.isEmpty()) this
            else ProgramText(text.erase(ranges))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top