私は角2はQueryList.toArrayよりも速いQueryList.findです[x]は、角
からQueryListデータ構造に疑問を抱いていたと私は、要素が私のthis.circleのQueryListを形成取得するための2つの可能性持っている2:
をまずひとつ:
let cir = this.circles.find(el => (el.rowNumber == row && el.colNumber == column));
二つ目:
let cir:ColOperations = this.circles.toArray()[row*this.colsNumber + column];
たぶん.toArray
を.find
のような同じコンピューティングに変更するか、さらに悪化させる可能性があります。
どのソリューションが高速ですか?