mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-24 21:48:03 +00:00
refactor: optimize event args handling for performance improvements
This commit is contained in:
@@ -117,7 +117,7 @@ public sealed class Bilateral : AbstractBase
|
||||
}
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
private void Handle(object? sender, TValueEventArgs args) => Update(args.Value, args.IsNew);
|
||||
private void Handle(object? sender, in TValueEventArgs args) => Update(args.Value, args.IsNew);
|
||||
|
||||
public override TSeries Update(TSeries source)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user