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