stride

stride() returns the length of a UTF-8 sequence starting at index i in string s.

  1. uint stride(char[] s, size_t i)
    uint
    stride
    (
    in char[] s
    ,)
  2. uint stride(wchar[] s, size_t i)
  3. uint stride(dchar[] s, size_t i)

Return Value

Type: uint

The number of bytes in the UTF-8 sequence or 0xFF meaning si is not the start of of UTF-8 sequence.

Meta