removed a duplicate function definition

pull/95/head
jmoenig 2020-06-22 13:03:42 +02:00
rodzic 098cf34b9f
commit ce53e16ade
1 zmienionych plików z 0 dodań i 4 usunięć

Wyświetl plik

@ -3566,10 +3566,6 @@ Process.prototype.hyperDyadic = function (baseOp, a, b) {
return baseOp(a, b);
};
Process.prototype.isMatrix = function (value) {
return value instanceof List && value.at(1) instanceof List;
};
Process.prototype.hyperZip = function (baseOp, a, b) {
// enable dyadic operations to be performed on lists and tables
var len, i, result;