igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
50 lines (49 loc) • 1.82 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { __extends } from "tslib";
import { ValueType, markStruct } from "./type";
/**
* @hidden
*/
var ValueTuple$3 = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ValueTuple$3, _super);
function ValueTuple$3($t1, $t2, $t3, a) {
var _rest = [];
for (var _i = 4; _i < arguments.length; _i++) {
_rest[_i - 4] = arguments[_i];
}
var _this = _super.call(this) || this;
_this.$t1 = null;
_this.$t2 = null;
_this.$t3 = null;
_this.a = null;
_this.b = null;
_this.c = null;
_this.$t1 = $t1;
_this.$t2 = $t2;
_this.$t3 = $t3;
_this.$type = _this.$type.specialize(_this.$t1, _this.$t2, _this.$t3);
a = (a == void 0) ? 0 : a;
switch (a) {
case 0: break;
case 1:
{
var c = _rest[0];
var d = _rest[1];
var e = _rest[2];
_this.a = c;
_this.b = d;
_this.c = e;
}
break;
}
return _this;
}
ValueTuple$3.$t = markStruct(ValueTuple$3, 'ValueTuple$3');
return ValueTuple$3;
}(ValueType));
export { ValueTuple$3 };