MCPcopy
hub / github.com/lutzroeder/netron / removeFromList

Method removeFromList

source/python.js:12916–12924  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

12914 return this.next !== null;
12915 }
12916 removeFromList() {
12917 this._owning_block = null;
12918 const next = this.next;
12919 const prev = this.prev;
12920 prev.next = next;
12921 next.prev = prev;
12922 this.next = null;
12923 this.prev = null;
12924 }
12925 destroy() {
12926 while (this.outputs().length > 0) {
12927 this.eraseOutput(this.outputs().length - 1);

Callers 2

moveBeforeMethod · 0.80
destroyMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected