You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(model): Use a list instead of a set for creating nodes
There should be no need for the implicit de-duplication via a set here.
Using a list (as the function documentation actually already says)
avoids the need for the final `toList()` conversion (which duplicates
nodes in memory) and avoids the performance penalty on insertion for sets.
Signed-off-by: Sebastian Schuberth <[email protected]>
0 commit comments