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