{"version":3,"sources":["iterable/mathoptions.ts"],"names":[],"mappings":"","file":"mathoptions.js","sourcesContent":["/**\n * The options for calculating an average.\n *\n * @export\n * @interface MathOptions\n * @template T The type of elements in the source sequence.\n */\nexport interface MathOptions<T> {\n  /**\n   * An optional selector used to get the value to average.\n   *\n   * @memberof MathOptions\n   */\n  selector?: (x: T) => number;\n  /**\n   * An optional thisArg for the selector.\n   *\n   * @type {*}\n   * @memberof MathOptions\n   */\n  thisArg?: any;\n}\n"]}