MCPcopy Create free account
hub / github.com/brainflow-dev/brainflow / equals

Method equals

nodejs_package/brainflow/complex.ts:234–244  ·  view source on GitHub ↗

* Compare two complex numbers for equality * @param other - The 2nd complex number operand * @returns true if equal, else false

(other: complex)

Source from the content-addressed store, hash-verified

232 * @returns true if equal, else false
233 */
234 public equals(other: complex): boolean
235 {
236 if (this.real === other.real && this.img === other.img)
237 {
238 return true;
239 }
240 else
241 {
242 return false;
243 }
244 }
245}

Callers 7

BoardShimClass · 0.80
MLModelClass · 0.80
DataFilterClass · 0.80
parse_argsMethod · 0.80
parse_argsMethod · 0.80
parse_argsMethod · 0.80
parse_argsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected