Beispiel #1
0
        /// <inheritdoc />
        //[MethodImpl(MethodImplOptions.AggressiveInlining)]
        public Stat2Cursor <TKey, TValue, TCursor> Clone()
        {
            var instance = new Stat2Cursor <TKey, TValue, TCursor>
            {
                _cursor = _cursor.Clone(),
            };

            return(instance);
        }
Beispiel #2
0
        /// <inheritdoc />
        public Window <TKey, TValue, TCursor> Clone() // [MethodImpl(MethodImplOptions.AggressiveInlining)]
        {
            var instance = new Window <TKey, TValue, TCursor>
            {
                _cursor = _cursor.Clone(),
            };

            return(instance);
        }
Beispiel #3
0
        /// <inheritdoc />
        public SMA <TKey, TValue, TCursor> Clone() // [MethodImpl(MethodImplOptions.AggressiveInlining)]
        {
            var instance = new SMA <TKey, TValue, TCursor>
            {
                _cursor = _cursor.Clone(),
                State   = State
            };

            return(instance);
        }