MCPcopy Index your code
hub / github.com/gpujs/gpu.js / _getNativeFunction

Method _getNativeFunction

src/backend/function-builder.js:476–481  ·  view source on GitHub ↗
(functionName)

Source from the content-addressed store, hash-verified

474 }
475
476 _getNativeFunction(functionName) {
477 for (let i = 0; i < this.nativeFunctions.length; i++) {
478 if (this.nativeFunctions[i].name === functionName) return this.nativeFunctions[i];
479 }
480 return null;
481 }
482
483 _isNativeFunction(functionName) {
484 return Boolean(this._getNativeFunction(functionName));

Callers 3

_isNativeFunctionMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected