* Returns Equal to of series and other. Supports element wise operations * @param other Series, number or Array of numbers to compare against * @example * ``` * const sf = new Series([1, 2, 3, 4, 5, 6]); * const sf2 = sf.eq(3); * console.log(sf2.values);
(other: Series | number | Array<number> | boolean[])
| 1435 | * ``` |
| 1436 | */ |
| 1437 | eq(other: Series | number | Array<number> | boolean[]): Series { |
| 1438 | return this.boolOps(other, "eq"); |
| 1439 | } |
| 1440 | |
| 1441 | /** |
| 1442 | * Internal function to perform boolean operations |