liberty
Here are 63 public repositories matching this topic...
-
Updated
Apr 12, 2019
-
Updated
Dec 1, 2020 - Java
-
Updated
Apr 4, 2018 - Java
-
Updated
Dec 23, 2019 - Java
-
Updated
Apr 26, 2019 - HTML
-
Updated
Apr 1, 2020 - Java
-
Updated
Jul 1, 2019 - PHP
-
Updated
Jul 24, 2017 - Java
-
Updated
Nov 18, 2020 - HTML
-
Updated
Jan 3, 2020 - HTML
-
Updated
Apr 15, 2018
-
Updated
Jan 8, 2019 - JavaScript
Improve this page
Add a description, image, and links to the liberty topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the liberty topic, visit your repo's landing page and select "manage topics."


Describe the bug
List#contains performs a linear search, which could have performs implications if the list is large and called repeatedly.
To Reproduce
See code
Expected behavior
A performant implementation.
Additional context
Review usage to see if a HashSet would be more appropriate in this context.