MCPcopy Create free account
hub / github.com/capstone-engine/capstone / pascalize

Function pascalize

bindings/const_generator.py:167–169  ·  view source on GitHub ↗
(name)

Source from the content-addressed store, hash-verified

165 return parts[0].lower() + ''.join(map(str.capitalize, parts[1:]))
166
167def pascalize(name):
168 parts = name.split('_')
169 return ''.join(map(str.capitalize, parts))
170
171def pascalize_const(name):
172 parts = name.split('_',2)

Callers 1

pascalize_constFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…