wcslen method

int wcslen(
  1. List<wchar_t> wcs
)

Computes the length of the wide string wcs.

Implementation

int wcslen(List<wchar_t> wcs) {
  return wcs.length;
}