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