Skip to content

Commit

Permalink
make improvements of thetree search of the library
Browse files Browse the repository at this point in the history
  • Loading branch information
xieguigang committed Dec 9, 2024
1 parent 80ccb8a commit b0ce4e3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ Namespace ComponentModel.Algorithm.BinaryTree
End Sub

''' <summary>
'''
''' Make key search and then populate all hits cluster member
''' </summary>
''' <param name="key"></param>
''' <returns></returns>
Expand Down
3 changes: 2 additions & 1 deletion Microsoft.VisualBasic.Core/src/Extensions/Extensions.vb
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,8 @@ Public Module Extensions
End If
End Function

<Extension> Public Function Add(Of T As INamedValue)(ByRef table As Dictionary(Of String, T), obj As T) As Dictionary(Of String, T)
<Extension>
Public Function Add(Of T As INamedValue)(ByRef table As Dictionary(Of String, T), obj As T) As Dictionary(Of String, T)
If table Is Nothing Then
table = New Dictionary(Of String, T)
End If
Expand Down

0 comments on commit b0ce4e3

Please sign in to comment.