MCPcopy Create free account
hub / github.com/chanced/caps / ToLowerSpecial

Method ToLowerSpecial

text/text.go:508–510  ·  view source on GitHub ↗

ToLowerSpecial returns a copy of the Text t with all Unicode letters mapped to their lower case using the case mapping specified by c.

(c unicode.SpecialCase)

Source from the content-addressed store, hash-verified

506// ToLowerSpecial returns a copy of the Text t with all Unicode letters mapped
507// to their lower case using the case mapping specified by c.
508func (t Text) ToLowerSpecial(c unicode.SpecialCase) Text {
509 return Text(strings.ToLowerSpecial(c, t.String()))
510}
511
512// ToUpperSpecial returns a copy of the Text t with all Unicode letters mapped
513// to their upper case using the case mapping specified by c.

Callers 2

TestToLowerFunction · 0.80
TestText_ToLowerSpecialFunction · 0.80

Calls 2

StringMethod · 0.95
TextTypeAlias · 0.85

Tested by 2

TestToLowerFunction · 0.64
TestText_ToLowerSpecialFunction · 0.64