MCPcopy Create free account
hub / github.com/captn3m0/hackertray / mergeBoolArray

Method mergeBoolArray

hackertray/__init__.py:253–256  ·  view source on GitHub ↗
(self, original, patch)

Source from the content-addressed store, hash-verified

251
252 # Merges two boolean arrays, using OR operation against each pair
253 def mergeBoolArray(self, original, patch):
254 for index, var in enumerate(original):
255 original[index] = original[index] or patch[index]
256 return original
257
258 @staticmethod
259 def _icon_theme_path():

Callers 1

refreshMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected