MCPcopy Create free account
hub / github.com/microsoft/SandDance / equals

Method equals

docs/app/js/sanddance-app.js:69285–69291  ·  view source on GitHub ↗
(array)

Source from the content-addressed store, hash-verified

69283 return "".concat(opts.printTypes ? this.constructor.name : "", "[").concat(string, "]");
69284 }
69285 equals(array) {
69286 if (!array || this.length !== array.length) return false;
69287 for(let i = 0; i < this.ELEMENTS; ++i){
69288 if (!(0, _common.equals)(this[i], array[i])) return false;
69289 }
69290 return true;
69291 }
69292 exactEquals(array) {
69293 if (!array || this.length !== array.length) return false;
69294 for(let i = 0; i < this.ELEMENTS; ++i){

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected