MCPcopy
hub / github.com/microsoft/SandDance / min

Function min

docs/app/js/sanddance-app.js:69918–69922  ·  view source on GitHub ↗
(out, a, b)

Source from the content-addressed store, hash-verified

69916 return out;
69917}
69918function min(out, a, b) {
69919 out[0] = Math.min(a[0], b[0]);
69920 out[1] = Math.min(a[1], b[1]);
69921 return out;
69922}
69923function max(out, a, b) {
69924 out[0] = Math.max(a[0], b[0]);
69925 out[1] = Math.max(a[1], b[1]);

Callers

nothing calls this directly

Calls 1

minMethod · 0.45

Tested by

no test coverage detected