MCPcopy Index your code
hub / github.com/pyfa-org/Pyfa / isStringCjk

Function isStringCjk

utils/cjk.py:19–27  ·  view source on GitHub ↗
(string)

Source from the content-addressed store, hash-verified

17
18
19def isStringCjk(string):
20 checked = set()
21 for char in string:
22 if char in checked:
23 continue
24 checked.add(char)
25 if isCharCjk(char):
26 return True
27 return False

Callers 2

processSearchesMethod · 0.90
OnScheduleSearchMethod · 0.90

Calls 1

isCharCjkFunction · 0.85

Tested by

no test coverage detected