Normalize normalizes to lowercase and Unicode Normalization Form C (NFC).
()
| 62 | // Normalize normalizes to lowercase and Unicode Normalization Form C |
| 63 | // (NFC). |
| 64 | func (n Name) Normalize() string { |
| 65 | return lex.NormalizeName(string(n)) |
| 66 | } |
| 67 | |
| 68 | // An UnrestrictedName is a Name that does not need to be escaped when it |
| 69 | // matches a reserved keyword. |
nothing calls this directly
no test coverage detected