Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Collection performance improvements #488

Merged

Commits on Feb 7, 2024

  1. Remove unnecessary calls to *.Contains()

    * Combine .!Contains with .Add into a single Add operation
    * Replace IndexOf with Contains (faster remove from EntityCollection)
    Daniel-Svensson committed Feb 7, 2024
    Configuration menu
    Copy the full SHA
    d8093bd View commit details
    Browse the repository at this point in the history
  2. Go though usages of ContainsKey

    * Use TryAdd instead if followed by Add
    * Use TryGet if followed by fetching value
    * Switch to HashSet if value is not used
    Daniel-Svensson committed Feb 7, 2024
    Configuration menu
    Copy the full SHA
    2c08c86 View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2024

  1. Configuration menu
    Copy the full SHA
    60766a5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ac5c1de View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d924054 View commit details
    Browse the repository at this point in the history
  4. fix compilation

    Daniel-Svensson committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    0a5e781 View commit details
    Browse the repository at this point in the history