forked from gmf520/osharp-v4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.linq-vsdoc.js
883 lines (759 loc) · 42.8 KB
/
jquery.linq-vsdoc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
/*--------------------------------------------------------------------------
* jquery.linq-vsdoc.js - LINQ for jQuery
* ver 2.2.0.2 (Jan. 21th, 2011)
*
* created and maintained by neuecc <[email protected]>
* licensed under Microsoft Public License(Ms-PL)
* http://neue.cc/
* http://linqjs.codeplex.com/
*--------------------------------------------------------------------------*/
jQuery.extend({ Enumerable: (function ()
{
var Enumerable = function (getEnumerator)
{
this.GetEnumerator = getEnumerator;
}
Enumerable.Choice = function (Params_Contents)
{
/// <summary>Random choice from arguments.
/// Ex: Choice(1,2,3) - 1,3,2,3,3,2,1...</summary>
/// <param type="T" name="Params_Contents" parameterArray="true">Array or Params Contents</param>
/// <returns type="jQuery.Enumerable"></returns>
}
Enumerable.Cycle = function (Params_Contents)
{
/// <summary>Cycle Repeat from arguments.
/// Ex: Cycle(1,2,3) - 1,2,3,1,2,3,1,2,3...</summary>
/// <param type="T" name="Params_Contents" parameterArray="true">Array or Params Contents</param>
/// <returns type="jQuery.Enumerable"></returns>
}
Enumerable.Empty = function ()
{
/// <summary>Returns an empty Enumerable.</summary>
/// <returns type="jQuery.Enumerable"></returns>
}
Enumerable.From = function (obj)
{
/// <summary>
/// Make Enumerable from obj.
/// 1. null = Enumerable.Empty().
/// 2. Enumerable = Enumerable.
/// 3. Number/Boolean = Enumerable.Repeat(obj, 1).
/// 4. String = to CharArray.(Ex:"abc" => "a","b","c").
/// 5. Object/Function = to KeyValuePair(except function) Ex:"{a:0}" => (.Key=a, .Value=0).
/// 6. Array or ArrayLikeObject(has length) = to Enumerable.
/// 7. JScript's IEnumerable = to Enumerable(using Enumerator).
/// </summary>
/// <param name="obj">object</param>
/// <returns type="jQuery.Enumerable"></returns>
}
Enumerable.Return = function (element)
{
/// <summary>Make one sequence. This equals Repeat(element, 1)</summary>
/// <param name="element">element</param>
/// <returns type="jQuery.Enumerable"></returns>
}
Enumerable.Matches = function (input, pattern, flags)
{
/// <summary>Global regex match and send regexp object.
/// Ex: Matches((.)z,"0z1z2z") - $[1] => 0,1,2</summary>
/// <param type="String" name="input">input string</param>
/// <param type="RegExp/String" name="pattern">RegExp or Pattern string</param>
/// <param type="Optional:String" name="flags" optional="true">If pattern is String then can use regexp flags "i" or "m" or "im"</param>
/// <returns type="jQuery.Enumerable"></returns>
}
Enumerable.Range = function (start, count, step)
{
/// <summary>Generates a sequence of integral numbers within a specified range.
/// Ex: Range(1,5) - 1,2,3,4,5</summary>
/// <param type="Number" integer="true" name="start">The value of the first integer in the sequence.</param>
/// <param type="Number" integer="true" name="count">The number of sequential integers to generate.</param>
/// <param type="Optional:Number" integer="true" name="step" optional="true">Step of generate number.(Ex:Range(0,3,5) - 0,5,10)</param>
/// <returns type="jQuery.Enumerable"></returns>
}
Enumerable.RangeDown = function (start, count, step)
{
/// <summary>Generates a sequence of integral numbers within a specified range.
/// Ex: RangeDown(5,5) - 5,4,3,2,1</summary>
/// <param type="Number" integer="true" name="start">The value of the first integer in the sequence.</param>
/// <param type="Number" integer="true" name="count">The number of sequential integers to generate.</param>
/// <param type="Optional:Number" integer="true" name="step" optional="true">Step of generate number.(Ex:RangeDown(0,3,5) - 0,-5,-10)</param>
/// <returns type="jQuery.Enumerable"></returns>
}
Enumerable.RangeTo = function (start, to, step)
{
/// <summary>Generates a sequence of integral numbers.
/// Ex: RangeTo(10,12) - 10,11,12 RangeTo(0,-2) - 0, -1, -2</summary>
/// <param type="Number" integer="true" name="start">start integer</param>
/// <param type="Number" integer="true" name="to">to integer</param>
/// <param type="Optional:Number" integer="true" name="step" optional="true">Step of generate number.(Ex:RangeTo(0,7,3) - 0,3,6)</param>
/// <returns type="jQuery.Enumerable"></returns>
}
Enumerable.Repeat = function (obj, count)
{
/// <summary>Generates a sequence that contains one repeated value.
/// If omit count then generate to infinity.
/// Ex: Repeat("foo",3) - "foo","foo","foo"</summary>
/// <param type="TResult" name="obj">The value to be repeated.</param>
/// <param type="Optional:Number" integer="true" name="count" optional="true">The number of times to repeat the value in the generated sequence.</param>
/// <returns type="jQuery.Enumerable"></returns>
}
Enumerable.RepeatWithFinalize = function (initializer, finalizer)
{
/// <summary>Lazy Generates one value by initializer's result and do finalize when enumerate end</summary>
/// <param type="Func<T>" name="initializer">value factory.</param>
/// <param type="Action<T>" name="finalizer">execute when finalize.</param>
/// <returns type="jQuery.Enumerable"></returns>
}
Enumerable.Generate = function (func, count)
{
/// <summary>Generates a sequence that execute func value.
/// If omit count then generate to infinity.
/// Ex: Generate("Math.random()", 5) - 0.131341,0.95425252,...</summary>
/// <param type="Func<T>" name="func">The value of execute func to be repeated.</param>
/// <param type="Optional:Number" integer="true" name="count" optional="true">The number of times to repeat the value in the generated sequence.</param>
/// <returns type="jQuery.Enumerable"></returns>
}
Enumerable.ToInfinity = function (start, step)
{
/// <summary>Generates a sequence of integral numbers to infinity.
/// Ex: ToInfinity() - 0,1,2,3...</summary>
/// <param type="Optional:Number" integer="true" name="start" optional="true">start integer</param>
/// <param type="Optional:Number" integer="true" name="step" optional="true">Step of generate number.(Ex:ToInfinity(10,3) - 10,13,16,19,...)</param>
/// <returns type="jQuery.Enumerable"></returns>
}
Enumerable.ToNegativeInfinity = function (start, step)
{
/// <summary>Generates a sequence of integral numbers to negative infinity.
/// Ex: ToNegativeInfinity() - 0,-1,-2,-3...</summary>
/// <param type="Optional:Number" integer="true" name="start" optional="true">start integer</param>
/// <param type="Optional:Number" integer="true" name="step" optional="true">Step of generate number.(Ex:ToNegativeInfinity(10,3) - 10,7,4,1,...)</param>
/// <returns type="jQuery.Enumerable"></returns>
}
Enumerable.Unfold = function (seed, func)
{
/// <summary>Applies function and generates a infinity sequence.
/// Ex: Unfold(3,"$+10") - 3,13,23,...</summary>
/// <param type="T" name="seed">The initial accumulator value.</param>
/// <param type="Func<T,T>" name="func">An accumulator function to be invoked on each element.</param>
/// <returns type="jQuery.Enumerable"></returns>
}
Enumerable.prototype =
{
/* Projection and Filtering Methods */
CascadeBreadthFirst: function (func, resultSelector)
{
/// <summary>Projects each element of sequence and flattens the resulting sequences into one sequence use breadth first search.</summary>
/// <param name="func" type="Func<T,T[]>">Select child sequence.</param>
/// <param name="resultSelector" type="Optional:Func<T>_or_Func<T,int>" optional="true">Optional:the second parameter of the function represents the nestlevel of the source sequence.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
CascadeDepthFirst: function (func, resultSelector)
{
/// <summary>Projects each element of sequence and flattens the resulting sequences into one sequence use depth first search.</summary>
/// <param name="func" type="Func<T,T[]>">Select child sequence.</param>
/// <param name="resultSelector" type="Optional:Func<T>_or_Func<T,int>" optional="true">Optional:the second parameter of the function represents the nestlevel of the source sequence.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
Flatten: function ()
{
/// <summary>Flatten sequences into one sequence.</summary>
/// <returns type="jQuery.Enumerable"></returns>
},
Pairwise: function (selector)
{
/// <summary>Projects current and next element of a sequence into a new form.</summary>
/// <param type="Func<TSource,TSource,TResult>" name="selector">A transform function to apply to current and next element.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
Scan: function (func_or_seed, func, resultSelector)
{
/// <summary>Applies an accumulator function over a sequence.</summary>
/// <param name="func_or_seed" type="Func<T,T,T>_or_TAccumulate">Func is an accumulator function to be invoked on each element. Seed is the initial accumulator value.</param>
/// <param name="func" type="Optional:Func<TAccumulate,T,TAccumulate>" optional="true">An accumulator function to be invoked on each element.</param>
/// <param name="resultSelector" type="Optional:Func<TAccumulate,TResult>" optional="true">A function to transform the final accumulator value into the result value.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
Select: function (selector)
{
/// <summary>Projects each element of a sequence into a new form.</summary>
/// <param name="selector" type="Func<T,T>_or_Func<T,int,T>">A transform function to apply to each source element; Optional:the second parameter of the function represents the index of the source element.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
SelectMany: function (collectionSelector, resultSelector)
{
/// <summary>Projects each element of a sequence and flattens the resulting sequences into one sequence.</summary>
/// <param name="collectionSelector" type="Func<T,TCollection[]>_or_Func<T,int,TCollection[]>">A transform function to apply to each source element; Optional:the second parameter of the function represents the index of the source element.</param>
/// <param name="resultSelector" type="Optional:Func<T,TCollection,TResult>" optional="true">Optional:A transform function to apply to each element of the intermediate sequence.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
Where: function (predicate)
{
/// <summary>Filters a sequence of values based on a predicate.</summary>
/// <param name="predicate" type="Func<T,bool>_or_Func<T,int,bool>">A function to test each source element for a condition; Optional:the second parameter of the function represents the index of the source element.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
OfType: function (type)
{
/// <summary>Filters the elements based on a specified type.</summary>
/// <param name="type" type="T">The type to filter the elements of the sequence on.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
Zip: function (second, selector)
{
/// <summary>Merges two sequences by using the specified predicate function.</summary>
/// <param name="second" type="T[]">The second sequence to merge.</param>
/// <param name="selector" type="Func<TFirst,TSecond,TResult>_or_Func<TFirst,TSecond,int,TResult>">A function that specifies how to merge the elements from the two sequences. Optional:the third parameter of the function represents the index of the source element.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
/* Join Methods */
Join: function (inner, outerKeySelector, innerKeySelector, resultSelector, compareSelector)
{
/// <summary>Correlates the elements of two sequences based on matching keys.</summary>
/// <param name="inner" type="T[]">The sequence to join to the first sequence.</param>
/// <param name="outerKeySelector" type="Func<TOuter,TKey>">A function to extract the join key from each element of the first sequence.</param>
/// <param name="innerKeySelector" type="Func<TInner,TKey>">A function to extract the join key from each element of the second sequence.</param>
/// <param name="resultSelector" type="Func<TOuter,TInner,TResult>">A function to create a result element from two matching elements.</param>
/// <param name="compareSelector" type="Optional:Func<TKey,TCompare>" optional="true">An equality comparer to compare values.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
GroupJoin: function (inner, outerKeySelector, innerKeySelector, resultSelector, compareSelector)
{
/// <summary>Correlates the elements of two sequences based on equality of keys and groups the results.</summary>
/// <param name="inner" type="T[]">The sequence to join to the first sequence.</param>
/// <param name="outerKeySelector" type="Func<TOuter>">A function to extract the join key from each element of the first sequence.</param>
/// <param name="innerKeySelector" type="Func<TInner>">A function to extract the join key from each element of the second sequence.</param>
/// <param name="resultSelector" type="Func<TOuter,Enumerable<TInner>,TResult">A function to create a result element from an element from the first sequence and a collection of matching elements from the second sequence.</param>
/// <param name="compareSelector" type="Optional:Func<TKey,TCompare>" optional="true">An equality comparer to compare values.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
/* Set Methods */
All: function (predicate)
{
/// <summary>Determines whether all elements of a sequence satisfy a condition.</summary>
/// <param type="Func<T,bool>" name="predicate">A function to test each element for a condition.</param>
/// <returns type="Boolean"></returns>
},
Any: function (predicate)
{
/// <summary>Determines whether a sequence contains any elements or any element of a sequence satisfies a condition.</summary>
/// <param name="predicate" type="Optional:Func<T,bool>" optional="true">A function to test each element for a condition.</param>
/// <returns type="Boolean"></returns>
},
Concat: function (second)
{
/// <summary>Concatenates two sequences.</summary>
/// <param name="second" type="T[]">The sequence to concatenate to the first sequence.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
Insert: function (index, second)
{
/// <summary>Merge two sequences.</summary>
/// <param name="index" type="Number" integer="true">The index of insert start position.</param>
/// <param name="second" type="T[]">The sequence to concatenate to the first sequence.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
Alternate: function (value)
{
/// <summary>Insert value to between sequence.</summary>
/// <param name="value" type="T">The value of insert.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
// Overload:function(value)
// Overload:function(value, compareSelector)
Contains: function (value, compareSelector)
{
/// <summary>Determines whether a sequence contains a specified element.</summary>
/// <param name="value" type="T">The value to locate in the sequence.</param>
/// <param name="compareSelector" type="Optional:Func<T,TKey>" optional="true">An equality comparer to compare values.</param>
/// <returns type="Boolean"></returns>
},
DefaultIfEmpty: function (defaultValue)
{
/// <summary>Returns the elements of the specified sequence or the specified value in a singleton collection if the sequence is empty.</summary>
/// <param name="defaultValue" type="T">The value to return if the sequence is empty.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
Distinct: function (compareSelector)
{
/// <summary>Returns distinct elements from a sequence.</summary>
/// <param name="compareSelector" type="Optional:Func<T,TKey>" optional="true">An equality comparer to compare values.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
Except: function (second, compareSelector)
{
/// <summary>Produces the set difference of two sequences.</summary>
/// <param name="second" type="T[]">An T[] whose Elements that also occur in the first sequence will cause those elements to be removed from the returned sequence.</param>
/// <param name="compareSelector" type="Optional:Func<T,TKey>" optional="true">An equality comparer to compare values.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
Intersect: function (second, compareSelector)
{
/// <summary>Produces the set difference of two sequences.</summary>
/// <param name="second" type="T[]">An T[] whose distinct elements that also appear in the first sequence will be returned.</param>
/// <param name="compareSelector" type="Optional:Func<T,TKey>" optional="true">An equality comparer to compare values.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
SequenceEqual: function (second, compareSelector)
{
/// <summary>Determines whether two sequences are equal by comparing the elements.</summary>
/// <param name="second" type="T[]">An T[] to compare to the first sequence.</param>
/// <param name="compareSelector" type="Optional:Func<T,TKey>" optional="true">An equality comparer to compare values.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
Union: function (second, compareSelector)
{
/// <summary>Produces the union of two sequences.</summary>
/// <param name="second" type="T[]">An T[] whose distinct elements form the second set for the union.</param>
/// <param name="compareSelector" type="Optional:Func<T,TKey>" optional="true">An equality comparer to compare values.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
/* Ordering Methods */
OrderBy: function (keySelector)
{
/// <summary>Sorts the elements of a sequence in ascending order according to a key.</summary>
/// <param name="keySelector" type="Optional:Func<T,TKey>">A function to extract a key from an element.</param>
return new OrderedEnumerable();
},
OrderByDescending: function (keySelector)
{
/// <summary>Sorts the elements of a sequence in descending order according to a key.</summary>
/// <param name="keySelector" type="Optional:Func<T,TKey>">A function to extract a key from an element.</param>
return new OrderedEnumerable();
},
Reverse: function ()
{
/// <summary>Inverts the order of the elements in a sequence.</summary>
/// <returns type="jQuery.Enumerable"></returns>
},
Shuffle: function ()
{
/// <summary>Shuffle sequence.</summary>
/// <returns type="jQuery.Enumerable"></returns>
},
/* Grouping Methods */
GroupBy: function (keySelector, elementSelector, resultSelector, compareSelector)
{
/// <summary>Groups the elements of a sequence according to a specified key selector function.</summary>
/// <param name="keySelector" type="Func<T,TKey>">A function to extract the key for each element.</param>
/// <param name="elementSelector" type="Optional:Func<T,TElement>">A function to map each source element to an element in an Grouping<TKey, TElement>.</param>
/// <param name="resultSelector" type="Optional:Func<TKey,Enumerable<TElement>,TResult>">A function to create a result value from each group.</param>
/// <param name="compareSelector" type="Optional:Func<TKey,TCompare>" optional="true">An equality comparer to compare values.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
PartitionBy: function (keySelector, elementSelector, resultSelector, compareSelector)
{
/// <summary>Create Group by continuation key.</summary>
/// <param name="keySelector" type="Func<T,TKey>">A function to extract the key for each element.</param>
/// <param name="elementSelector" type="Optional:Func<T,TElement>">A function to map each source element to an element in an Grouping<TKey, TElement>.</param>
/// <param name="resultSelector" type="Optional:Func<TKey,Enumerable<TElement>,TResult>">A function to create a result value from each group.</param>
/// <param name="compareSelector" type="Optional:Func<TKey,TCompare>" optional="true">An equality comparer to compare values.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
BufferWithCount: function (count)
{
/// <summary>Divide by count</summary>
/// <param name="count" type="Number" integer="true">integer</param>
/// <returns type="jQuery.Enumerable"></returns>
},
/* Aggregate Methods */
Aggregate: function (func_or_seed, func, resultSelector)
{
/// <summary>Applies an accumulator function over a sequence.</summary>
/// <param name="func_or_seed" type="Func<T,T,T>_or_TAccumulate">Func is an accumulator function to be invoked on each element. Seed is the initial accumulator value.</param>
/// <param name="func" type="Optional:Func<TAccumulate,T,TAccumulate>" optional="true">An accumulator function to be invoked on each element.</param>
/// <param name="resultSelector" type="Optional:Func<TAccumulate,TResult>" optional="true">A function to transform the final accumulator value into the result value.</param>
/// <returns type="TResult"></returns>
},
Average: function (selector)
{
/// <summary>Computes the average of a sequence.</summary>
/// <param name="selector" type="Optional:Func<T,Number>" optional="true">A transform function to apply to each element.</param>
/// <returns type="Number"></returns>
},
Count: function (predicate)
{
/// <summary>Returns the number of elements in a sequence.</summary>
/// <param name="predicate" type="Optional:Func<T,Boolean>" optional="true">A function to test each element for a condition.</param>
/// <returns type="Number"></returns>
},
Max: function (selector)
{
/// <summary>Returns the maximum value in a sequence</summary>
/// <param name="selector" type="Optional:Func<T,TKey>" optional="true">A transform function to apply to each element.</param>
/// <returns type="Number"></returns>
},
Min: function (selector)
{
/// <summary>Returns the minimum value in a sequence</summary>
/// <param name="selector" type="Optional:Func<T,TKey>" optional="true">A transform function to apply to each element.</param>
/// <returns type="Number"></returns>
},
MaxBy: function (keySelector)
{
/// <summary>Returns the maximum value in a sequence by keySelector</summary>
/// <param name="keySelector" type="Func<T,TKey>">A compare selector of element.</param>
/// <returns type="T"></returns>
},
MinBy: function (keySelector)
{
/// <summary>Returns the minimum value in a sequence by keySelector</summary>
/// <param name="keySelector" type="Func<T,TKey>">A compare selector of element.</param>
/// <returns type="T"></returns>
},
Sum: function (selector)
{
/// <summary>Computes the sum of a sequence of values.</summary>
/// <param name="selector" type="Optional:Func<T,TKey>" optional="true">A transform function to apply to each element.</param>
/// <returns type="Number"></returns>
},
/* Paging Methods */
ElementAt: function (index)
{
/// <summary>Returns the element at a specified index in a sequence.</summary>
/// <param name="index" type="Number" integer="true">The zero-based index of the element to retrieve.</param>
/// <returns type="T"></returns>
},
ElementAtOrDefault: function (index, defaultValue)
{
/// <summary>Returns the element at a specified index in a sequence or a default value if the index is out of range.</summary>
/// <param name="index" type="Number" integer="true">The zero-based index of the element to retrieve.</param>
/// <param name="defaultValue" type="T">The value if the index is outside the bounds then send.</param>
/// <returns type="T"></returns>
},
First: function (predicate)
{
/// <summary>Returns the first element of a sequence.</summary>
/// <param name="predicate" type="Optional:Func<T,Boolean>">A function to test each element for a condition.</param>
/// <returns type="T"></returns>
},
FirstOrDefault: function (defaultValue, predicate)
{
/// <summary>Returns the first element of a sequence, or a default value.</summary>
/// <param name="defaultValue" type="T">The value if not found then send.</param>
/// <param name="predicate" type="Optional:Func<T,Boolean>">A function to test each element for a condition.</param>
/// <returns type="T"></returns>
},
Last: function (predicate)
{
/// <summary>Returns the last element of a sequence.</summary>
/// <param name="predicate" type="Optional:Func<T,Boolean>">A function to test each element for a condition.</param>
/// <returns type="T"></returns>
},
LastOrDefault: function (defaultValue, predicate)
{
/// <summary>Returns the last element of a sequence, or a default value.</summary>
/// <param name="defaultValue" type="T">The value if not found then send.</param>
/// <param name="predicate" type="Optional:Func<T,Boolean>">A function to test each element for a condition.</param>
/// <returns type="T"></returns>
},
Single: function (predicate)
{
/// <summary>Returns the only element of a sequence that satisfies a specified condition, and throws an exception if more than one such element exists.</summary>
/// <param name="predicate" type="Optional:Func<T,Boolean>">A function to test each element for a condition.</param>
/// <returns type="T"></returns>
},
SingleOrDefault: function (defaultValue, predicate)
{
/// <summary>Returns a single, specific element of a sequence of values, or a default value if no such element is found.</summary>
/// <param name="defaultValue" type="T">The value if not found then send.</param>
/// <param name="predicate" type="Optional:Func<T,Boolean>">A function to test each element for a condition.</param>
/// <returns type="T"></returns>
},
Skip: function (count)
{
/// <summary>Bypasses a specified number of elements in a sequence and then returns the remaining elements.</summary>
/// <param name="count" type="Number" integer="true">The number of elements to skip before returning the remaining elements.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
SkipWhile: function (predicate)
{
/// <summary>Bypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements.</summary>
/// <param name="predicate" type="Func<T,Boolean>_or_Func<T,int,Boolean>">A function to test each source element for a condition; Optional:the second parameter of the function represents the index of the source element.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
Take: function (count)
{
/// <summary>Returns a specified number of contiguous elements from the start of a sequence.</summary>
/// <param name="count" type="Number" integer="true">The number of elements to return.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
TakeWhile: function (predicate)
{
/// <summary>Returns elements from a sequence as long as a specified condition is true, and then skips the remaining elements.</summary>
/// <param name="predicate" type="Func<T,Boolean>_or_Func<T,int,Boolean>">A function to test each source element for a condition; Optional:the second parameter of the function represents the index of the source element.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
TakeExceptLast: function (count)
{
/// <summary>Take a sequence except last count.</summary>
/// <param name="count" type="Optional:Number" integer="true">The number of skip count.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
TakeFromLast: function (count)
{
/// <summary>Take a sequence from last count.</summary>
/// <param name="count" type="Number" integer="true">The number of take count.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
IndexOf: function (item)
{
/// <summary>Returns the zero-based index of the flrst occurrence of a value.</summary>
/// <param name="item" type="T">The zero-based starting index of the search.</param>
/// <returns type="Number" integer="true"></returns>
},
LastIndexOf: function (item)
{
/// <summary>Returns the zero-based index of the last occurrence of a value.</summary>
/// <param name="item" type="T">The zero-based starting index of the search.</param>
/// <returns type="Number" integer="true"></returns>
},
/* Convert Methods */
ToArray: function ()
{
/// <summary>Creates an array from this sequence.</summary>
/// <returns type="Array"></returns>
},
ToLookup: function (keySelector, elementSelector, compareSelector)
{
/// <summary>Creates a Lookup from this sequence.</summary>
/// <param name="keySelector" type="Func<T,TKey>">A function to extract a key from each element.</param>
/// <param name="elementSelector" type="Optional:Func<T,TElement>">A transform function to produce a result element value from each element.</param>
/// <param name="compareSelector" type="Optional:Func<TKey,TCompare>" optional="true">An equality comparer to compare values.</param>
return new Lookup();
},
ToObject: function (keySelector, elementSelector)
{
/// <summary>Creates a Object from this sequence.</summary>
/// <param name="keySelector" type="Func<T,String>">A function to extract a key from each element.</param>
/// <param name="elementSelector" type="Func<T,TElement>">A transform function to produce a result element value from each element.</param>
/// <returns type="Object"></returns>
},
ToDictionary: function (keySelector, elementSelector, compareSelector)
{
/// <summary>Creates a Dictionary from this sequence.</summary>
/// <param name="keySelector" type="Func<T,TKey>">A function to extract a key from each element.</param>
/// <param name="elementSelector" type="Func<T,TElement>">A transform function to produce a result element value from each element.</param>
/// <param name="compareSelector" type="Optional:Func<TKey,TCompare>" optional="true">An equality comparer to compare values.</param>
return new Dictionary();
},
// Overload:function()
// Overload:function(replacer)
// Overload:function(replacer, space)
ToJSON: function (replacer, space)
{
/// <summary>Creates a JSON String from sequence, performed only native JSON support browser or included json2.js.</summary>
/// <param name="replacer" type="Optional:Func">a replacer.</param>
/// <param name="space" type="Optional:Number">indent spaces.</param>
/// <returns type="String"></returns>
},
// Overload:function()
// Overload:function(separator)
// Overload:function(separator,selector)
ToString: function (separator, selector)
{
/// <summary>Creates Joined string from this sequence.</summary>
/// <param name="separator" type="Optional:String">A String.</param>
/// <param name="selector" type="Optional:Func<T,String>">A transform function to apply to each source element.</param>
/// <returns type="String"></returns>
},
/* Action Methods */
Do: function (action)
{
/// <summary>Performs the specified action on each element of the sequence.</summary>
/// <param name="action" type="Action<T>_or_Action<T,int>">Optional:the second parameter of the function represents the index of the source element.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
ForEach: function (action)
{
/// <summary>Performs the specified action on each element of the sequence.</summary>
/// <param name="action" type="Action<T>_or_Action<T,int>">[return true;]continue iteration.[return false;]break iteration. Optional:the second parameter of the function represents the index of the source element.</param>
/// <returns type="void"></returns>
},
Write: function (separator, selector)
{
/// <summary>Do document.write.</summary>
/// <param name="separator" type="Optional:String">A String.</param>
/// <param name="selector" type="Optional:Func<T,String>">A transform function to apply to each source element.</param>
/// <returns type="void"></returns>
},
WriteLine: function (selector)
{
/// <summary>Do document.write + <br />.</summary>
/// <param name="selector" type="Optional:Func<T,String>">A transform function to apply to each source element.</param>
/// <returns type="void"></returns>
},
Force: function ()
{
/// <summary>Execute enumerate.</summary>
/// <returns type="void"></returns>
},
/* Functional Methods */
Let: function (func)
{
/// <summary>Bind the source to the parameter so that it can be used multiple times.</summary>
/// <param name="func" type="Func<Enumerable<T>,Enumerable<TR>>">apply function.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
Share: function ()
{
/// <summary>Shares cursor of all enumerators to the sequence.</summary>
/// <returns type="jQuery.Enumerable"></returns>
},
MemoizeAll: function ()
{
/// <summary>Creates an enumerable that enumerates the original enumerable only once and caches its results.</summary>
/// <returns type="jQuery.Enumerable"></returns>
},
/* Error Handling Methods */
Catch: function (handler)
{
/// <summary>catch error and do handler.</summary>
/// <param name="handler" type="Action<Error>">execute if error occured.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
Finally: function (finallyAction)
{
/// <summary>do action if enumerate end or disposed or error occured.</summary>
/// <param name="handler" type="Action">finally execute.</param>
/// <returns type="jQuery.Enumerable"></returns>
},
/* For Debug Methods */
Trace: function (message, selector)
{
/// <summary>Trace object use console.log.</summary>
/// <param name="message" type="Optional:String">Default is 'Trace:'.</param>
/// <param name="selector" type="Optional:Func<T,String>">A transform function to apply to each source element.</param>
/// <returns type="jQuery.Enumerable"></returns>
}
}
// vsdoc-dummy
Enumerable.prototype.GetEnumerator = function ()
{
/// <summary>Returns an enumerator that iterates through the collection.</summary>
return new IEnumerator();
}
var IEnumerator = function () { }
IEnumerator.prototype.Current = function ()
{
/// <summary>Gets the element in the collection at the current position of the enumerator.</summary>
/// <returns type="T"></returns>
}
IEnumerator.prototype.MoveNext = function ()
{
/// <summary>Advances the enumerator to the next element of the collection.</summary>
/// <returns type="Boolean"></returns>
}
IEnumerator.prototype.Dispose = function ()
{
/// <summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
/// <returns type="Void"></returns>
}
var Dictionary = function () { }
Dictionary.prototype =
{
Add: function (key, value)
{
/// <summary>add new pair. if duplicate key then overwrite new value.</summary>
/// <returns type="Void"></returns>
},
Get: function (key)
{
/// <summary>get value. if not find key then return undefined.</summary>
/// <returns type="T"></returns>
},
Set: function (key, value)
{
/// <summary>set value. if complete set value then return true, not find key then return false.</summary>
/// <returns type="Boolean"></returns>
},
Contains: function (key)
{
/// <summary>check contains key.</summary>
/// <returns type="Boolean"></returns>
},
Clear: function ()
{
/// <summary>clear dictionary.</summary>
/// <returns type="Void"></returns>
},
Remove: function (key)
{
/// <summary>remove key and value.</summary>
/// <returns type="Void"></returns>
},
Count: function ()
{
/// <summary>contains value's count.</summary>
/// <returns type="Number"></returns>
},
ToEnumerable: function ()
{
/// <summary>Convert to Enumerable<{Key:, Value:}>.</summary>
/// <returns type="jQuery.Enumerable"></returns>
}
}
var Lookup = function () { }
Lookup.prototype =
{
Count: function ()
{
/// <summary>contains value's count.</summary>
/// <returns type="Number"></returns>
},
Get: function (key)
{
/// <summary>get grouped enumerable.</summary>
/// <returns type="jQuery.Enumerable"></returns>
},
Contains: function (key)
{
/// <summary>check contains key.</summary>
/// <returns type="Boolean"></returns>
},
ToEnumerable: function ()
{
/// <summary>Convert to Enumerable<Grouping>.</summary>
/// <returns type="jQuery.Enumerable"></returns>
}
}
var Grouping = function () { }
Grouping.prototype = new Enumerable();
Grouping.prototype.Key = function ()
{
/// <summary>get grouping key.</summary>
/// <returns type="T"></returns>
}
var OrderedEnumerable = function () { }
OrderedEnumerable.prototype = new Enumerable();
OrderedEnumerable.prototype.ThenBy = function (keySelector)
{
/// <summary>Performs a subsequent ordering of the elements in a sequence in ascending order according to a key.</summary>
/// <param name="keySelector" type="Func<T,TKey>">A function to extract a key from each element.</param>
return Enumerable.Empty().OrderBy();
}
OrderedEnumerable.prototype.ThenByDescending = function (keySelector)
{
/// <summary>Performs a subsequent ordering of the elements in a sequence in descending order, according to a key.</summary>
/// <param name="keySelector" type="Func<T,TKey>">A function to extract a key from each element.</param>
return Enumerable.Empty().OrderBy();
}
return Enumerable;
})()
});
// plugin setup
(function ($)
{
$.fn.toEnumerable = function ()
{
/// <summary>each contains elements. to Enumerable<jQuery>.</summary>
/// <returns type="jQuery.Enumerable"></returns>
return $.Enumerable.From(this).Select(function (e) { return $(e) });
}
$.Enumerable.prototype.TojQuery = function ()
{
/// <summary>Enumerable to jQuery.</summary>
/// <returns type="jQuery"></returns>
return $(this.ToArray());
}
})(jQuery)