#include <unicode.h>
|
static int32_t | ToUpper (int32_t code_point) |
|
static int32_t | ToLower (int32_t code_point) |
|
Definition at line 171 of file unicode.h.
◆ ToLower()
static int32_t dart::CaseMapping::ToLower |
( |
int32_t |
code_point | ) |
|
|
inlinestatic |
Definition at line 179 of file unicode.h.
179 {
180 return Convert(code_point, kLowercase);
181 }
◆ ToUpper()
static int32_t dart::CaseMapping::ToUpper |
( |
int32_t |
code_point | ) |
|
|
inlinestatic |
Definition at line 174 of file unicode.h.
174 {
175 return Convert(code_point, kUppercase);
176 }
The documentation for this class was generated from the following files: