Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for B0 (0.11 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/idn/IdnaMappingTable.kt

            val entryIndex = index * 4
            val b0 = ranges[entryIndex].code
            return@binarySearch target.compareTo(b0)
          }
    
        return when {
          offset >= 0 -> offset * 4 // This entry was found by binary search.
          else -> (-offset - 2) * 4 // Not found? Use the preceding element.
        }
      }
    }
    
    internal fun String.read14BitInt(index: Int): Int {
      val b0 = this[index].code
      val b1 = this[index + 1].code
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Tue Apr 02 11:39:58 GMT 2024
    - 9K bytes
    - Viewed (0)
Back to top