menu
artisanal package
documentation
terminal.dart
firstCodePoint function
firstCodePoint function
dark_mode
light_mode
firstCodePoint
function
int
firstCodePoint
(
String
s
)
Implementation
int firstCodePoint(String s) { final cps = codePoints(s); return cps.isEmpty ? 0 : cps.first; }
artisanal package
documentation
terminal
firstCodePoint function
terminal library