github.com/primecitizens/pcz/std@v0.2.1/text/unicode/common/const.go (about)

     1  // SPDX-License-Identifier: Apache-2.0
     2  // Copyright 2023 The Prime Citizens
     3  
     4  package common
     5  
     6  const (
     7  	RuneError = '\uFFFD'     // The "error" Rune or "Unicode replacement character"
     8  	MaxRune   = '\U0010FFFF' // Maximum valid Unicode code point.
     9  
    10  	SurrogateMin = 0xD800
    11  	SurrogateMax = 0xDFFF
    12  )