MemoryExtensions.Count Method

Definition

Overloads

Count<T>(ReadOnlySpan<T>, T)

Counts the number of times the specified value occurs in the span.

Count<T>(Span<T>, T)

Counts the number of times the specified value occurs in the span.

Count<T>(ReadOnlySpan<T>, ReadOnlySpan<T>)

Counts the number of times value occurs in span.

Count<T>(Span<T>, ReadOnlySpan<T>)

Counts the number of times the specified value occurs in the span.

Count<T>(ReadOnlySpan<T>, T)

Counts the number of times the specified value occurs in the span.

public:
generic <typename T>
 where T : IEquatable<T>[System::Runtime::CompilerServices::Extension]
 static int Count(ReadOnlySpan<T> span, T value);
public static int Count<T> (this ReadOnlySpan<T> span, T value) where T : IEquatable<T>;
static member Count : ReadOnlySpan<'T (requires 'T :> IEquatable<'T>)> * 'T -> int (requires 'T :> IEquatable<'T>)
<Extension()>
Public Function Count(Of T As IEquatable(Of T)) (span As ReadOnlySpan(Of T), value As T) As Integer

Type Parameters

T

The element type of the span.

Parameters

span
ReadOnlySpan<T>

The span to search.

value
T

The value for which to search.

Returns

The number of times value was found in the span.

Applies to

Count<T>(Span<T>, T)

Counts the number of times the specified value occurs in the span.

public:
generic <typename T>
 where T : IEquatable<T>[System::Runtime::CompilerServices::Extension]
 static int Count(Span<T> span, T value);
public static int Count<T> (this Span<T> span, T value) where T : IEquatable<T>;
static member Count : Span<'T (requires 'T :> IEquatable<'T>)> * 'T -> int (requires 'T :> IEquatable<'T>)
<Extension()>
Public Function Count(Of T As IEquatable(Of T)) (span As Span(Of T), value As T) As Integer

Type Parameters

T

The element type of the span.

Parameters

span
Span<T>

The span to search.

value
T

The value for which to search.

Returns

The number of times value was found in the span.

Applies to

Count<T>(ReadOnlySpan<T>, ReadOnlySpan<T>)

Counts the number of times value occurs in span.

public:
generic <typename T>
 where T : IEquatable<T>[System::Runtime::CompilerServices::Extension]
 static int Count(ReadOnlySpan<T> span, ReadOnlySpan<T> value);
public static int Count<T> (this ReadOnlySpan<T> span, ReadOnlySpan<T> value) where T : IEquatable<T>;
static member Count : ReadOnlySpan<'T (requires 'T :> IEquatable<'T>)> * ReadOnlySpan<'T (requires 'T :> IEquatable<'T>)> -> int (requires 'T :> IEquatable<'T>)
<Extension()>
Public Function Count(Of T As IEquatable(Of T)) (span As ReadOnlySpan(Of T), value As ReadOnlySpan(Of T)) As Integer

Type Parameters

T

The element type of the span.

Parameters

span
ReadOnlySpan<T>

The span to search.

value
ReadOnlySpan<T>

The value for which to search.

Returns

The number of times value was found in span.

Applies to

Count<T>(Span<T>, ReadOnlySpan<T>)

Counts the number of times the specified value occurs in the span.

public:
generic <typename T>
 where T : IEquatable<T>[System::Runtime::CompilerServices::Extension]
 static int Count(Span<T> span, ReadOnlySpan<T> value);
public static int Count<T> (this Span<T> span, ReadOnlySpan<T> value) where T : IEquatable<T>;
static member Count : Span<'T (requires 'T :> IEquatable<'T>)> * ReadOnlySpan<'T (requires 'T :> IEquatable<'T>)> -> int (requires 'T :> IEquatable<'T>)
<Extension()>
Public Function Count(Of T As IEquatable(Of T)) (span As Span(Of T), value As ReadOnlySpan(Of T)) As Integer

Type Parameters

T

The element type of the span.

Parameters

span
Span<T>

The span to search.

value
ReadOnlySpan<T>

The value for which to search.

Returns

The number of times value was found in the span.

Applies to