MCPcopy Create free account
hub / github.com/actor-framework/actor-framework / next_element

Function next_element

scripts/demystify.py:31–38  ·  view source on GitHub ↗
(x, pos, last)

Source from the content-addressed store, hash-verified

29 return pos - 1
30
31def next_element(x, pos, last):
32 # scan for ',' that isn't inside <...>
33 while pos < last and x[pos] != ',':
34 if x[pos] == '<':
35 pos = end_of_template(x, pos + 1)
36 else:
37 pos += 1
38 return pos
39
40def atom_read(x):
41 result = ""

Callers 1

decompose_type_listFunction · 0.85

Calls 1

end_of_templateFunction · 0.85

Tested by

no test coverage detected