|
' Licensed to the .NET Foundation under one or more agreements.
' The .NET Foundation licenses this file to you under the MIT license.
' See the LICENSE file in the project root for more information.
Imports System.Runtime.CompilerServices
Namespace Microsoft.CodeAnalysis.VisualBasic.Extensions
Friend Module SyntaxKindExtensions
''' <summary>
''' Determine if the given <see cref="SyntaxKind"/> array contains the given kind.
''' </summary>
''' <param name="kinds">Array to search</param>
''' <param name="kind">Sought value</param>
''' <returns>True if <paramref name="kinds"/> contains the value <paramref name="kind"/>.</returns>
''' <remarks>PERF: Not using Array.IndexOf here because it results in a call to IndexOf on the default EqualityComparer for SyntaxKind. The default comparer for SyntaxKind is
''' the ObjectEqualityComparer which results in boxing allocations.</remarks>
<Extension()>
Public Function Contains(kinds As SyntaxKind(), kind As SyntaxKind) As Boolean
For Each k In kinds
If k = kind Then Return True
Next
Return False
End Function
''' <summary>
''' Locate the given <see cref="SyntaxKind"/> in an array starting at the given index.
''' </summary>
''' <param name="kinds">Array to search</param>
''' <param name="kind">Sought value</param>
''' <param name="start">Starting index</param>
''' <returns>The index of the first occurrence of <paramref name="kind"/> in <paramref name="kinds"/>.</returns>
''' <remarks>PERF: Not using Array.IndexOf here because it results in a call to IndexOf on the default EqualityComparer for SyntaxKind. The default comparer for SyntaxKind is
''' the ObjectEqualityComparer which results in boxing allocations.</remarks>
<Extension()>
Public Function IndexOf(kinds As SyntaxKind(), kind As SyntaxKind, Optional start As Integer = 0) As Integer
For i = start To kinds.Length - 1
If kinds(i) = kind Then Return i
Next
Return -1
End Function
End Module
End Namespace
|