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

Function splitArgumentTypes

src/backend/kernel.js:937–945  ·  view source on GitHub ↗
(argumentTypesObject)

Source from the content-addressed store, hash-verified

935}
936
937function splitArgumentTypes(argumentTypesObject) {
938 const argumentNames = Object.keys(argumentTypesObject);
939 const argumentTypes = [];
940 for (let i = 0; i < argumentNames.length; i++) {
941 const argumentName = argumentNames[i];
942 argumentTypes.push(argumentTypesObject[argumentName]);
943 }
944 return { argumentTypes, argumentNames };
945}
946
947module.exports = {
948 Kernel

Callers 1

addNativeFunctionMethod · 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…