UNPKG

igniteui-react-core

Version:
31 lines (30 loc) 1.4 kB
/* 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 { Base, markType } from "./type"; import { IRandomnessGenerator_$type } from "./IRandomnessGenerator"; /** * @hidden */ var DefaultRandomnessGenerator = /** @class */ /*@__PURE__*/ (function (_super) { __extends(DefaultRandomnessGenerator, _super); function DefaultRandomnessGenerator(a) { var _this = _super.call(this) || this; _this.a = null; _this.a = a; return _this; } DefaultRandomnessGenerator.prototype.next = function (a, b) { return this.a.next2(a, b); }; DefaultRandomnessGenerator.prototype.nextDouble = function () { return this.a.nextDouble(); }; DefaultRandomnessGenerator.$t = markType(DefaultRandomnessGenerator, 'DefaultRandomnessGenerator', Base.$, [IRandomnessGenerator_$type]); return DefaultRandomnessGenerator; }(Base)); export { DefaultRandomnessGenerator };