Dygraph.dateString_: shows milliseconds if any. (#774)
[dygraphs.git] / jsdoc-toolkit / app / test / shared.js
CommitLineData
629a09ae
DV
1
2/**
3 * Builtin object.
4 * @class
5 * @name Array
6 */
7
8/**#@+
9 * Extension to builtin array.
10 * @memberOf Array
11 * @method
12 */
13
14/**
15 * @returns Boolen if some array members...
16 */
17Array.prototype.some = function(){};
18
19/**
20 * Change every element of an array.
21 * @returns Filtered array copy.
22 */
23Array.prototype.filter = function(){};
24
25/**#@-*/
26
27
28/**
29 * A first in, first out data structure.
30 * @constructor
31 */
32Queue = function(){};
33
34/**#@+
35 * Extension to Queue.
36 * @memberOf Queue
37 */
38
39rewind = function(){
40}
41
42// should close automatically here.