Beispiel #1
0
        public void List_FastLinq()
        {
            var Zip = FastLinq.Zip(this.list, this.list, ZipAggregator);

            if (EnumerateAfterwards)
            {
                foreach (var item in Zip)
                {
                    ;
                }
            }
        }
Beispiel #2
0
        public void Array_FastLinq()
        {
            var Zip = FastLinq.Zip(this.array, this.array, ZipAggregator);

            if (EnumerateAfterwards)
            {
                foreach (var item in Zip)
                {
                    ;
                }
            }
        }
Beispiel #3
0
        public void Collection_FastLinq()
        {
            var Zip = FastLinq.Zip(this.collection, this.collection, ZipAggregator);

            if (EnumerateAfterwards)
            {
                foreach (var item in Zip)
                {
                    ;
                }
            }
        }