Example #1
0
        public double fseqSkip()
        {
            Double milliSeconds = 0D;
            T      myT          = default(T);

            int halfLength = nContLength / 2;

            DateTime start = DateTime.Now;

            for (UInt32 i = 0; i < nOperations; i++)
            {
                {
                    FNSeq <T> skippedFSeq = theFContainer.skip(halfLength);
                    myT = skippedFSeq.itemAt(halfLength - 1);
                }
            }
            DateTime end = DateTime.Now;

            milliSeconds += (end - start).TotalMilliseconds;

            return(milliSeconds);
        }