igniteui-react-core
Version:
Ignite UI React Core.
32 lines (31 loc) • 1.41 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 { Base, IEnumerable$1_$type, markType, getEnumerator } from "./type";
import { GenericEnumerator$1 } from "./GenericEnumerator$1";
/**
* @hidden
*/
export let GenericEnumerable$1 = /*@__PURE__*/ (() => {
class GenericEnumerable$1 extends Base {
constructor($t, a) {
super();
this.$t = null;
this.a = null;
this.$t = $t;
this.$type = this.$type.specialize(this.$t);
this.a = a;
}
getEnumerator() {
return new GenericEnumerator$1(this.$t, getEnumerator(this.a()));
}
getEnumeratorObject() {
return new GenericEnumerator$1(this.$t, getEnumerator(this.a()));
}
}
GenericEnumerable$1.$t = /*@__PURE__*/ markType(GenericEnumerable$1, 'GenericEnumerable$1', Base.$, [/*@__PURE__*/ IEnumerable$1_$type.specialize(0)]);
return GenericEnumerable$1;
})();