Esempio n. 1
0
        public void ZipLongestIsLazy()
        {
            var bs = new BreakingSequence <int>();

            bs.ZipLongest <int, int, int>(bs, delegate { throw new NotImplementedException(); });
        }
Esempio n. 2
0
        public void ZipLongestIsLazy()
        {
            var bs = new BreakingSequence <int>();

            bs.ZipLongest(bs, BreakingFunc.Of <int, int, int>());
        }