Example #1
0
 public bool Array_FastLinq_None()
 {
     return(FastLinq.All(this.array, i => false));
 }
Example #2
0
 public bool Array_FastLinq_Some()
 {
     return(FastLinq.All(this.array, i => i < 2));
 }
Example #3
0
 public bool Array_FastLinq_All()
 {
     return(FastLinq.All(this.array, i => true));
 }
Example #4
0
 public bool List_FastLinq_None()
 {
     return(FastLinq.All(this.list, i => false));
 }
Example #5
0
 public bool List_FastLinq_Some()
 {
     return(FastLinq.All(this.list, i => i < 2));
 }
Example #6
0
 public bool List_FastLinq_All()
 {
     return(FastLinq.All(this.list, i => true));
 }