AsyncEnumerable.SkipWhile 메서드

정의

오버로드

Name Description
SkipWhile<TSource>(IAsyncEnumerable<TSource>, Func<TSource,CancellationToken,ValueTask<Boolean>>)

지정된 조건이 true인 한 시퀀스의 요소를 바이패스한 다음 나머지 요소를 반환합니다.

SkipWhile<TSource>(IAsyncEnumerable<TSource>, Func<TSource,Int32,CancellationToken,ValueTask<Boolean>>)

지정된 조건이 true인 한 시퀀스의 요소를 바이패스한 다음 나머지 요소를 반환합니다. 요소의 인덱스는 조건자 함수의 논리에 사용됩니다.

SkipWhile<TSource>(IAsyncEnumerable<TSource>, Func<TSource,Boolean>)

지정된 조건이 true인 한 시퀀스의 요소를 바이패스한 다음 나머지 요소를 반환합니다.

SkipWhile<TSource>(IAsyncEnumerable<TSource>, Func<TSource,Int32,Boolean>)

지정된 조건이 true인 한 시퀀스의 요소를 바이패스한 다음 나머지 요소를 반환합니다. 요소의 인덱스는 조건자 함수의 논리에 사용됩니다.

SkipWhile<TSource>(IAsyncEnumerable<TSource>, Func<TSource,CancellationToken,ValueTask<Boolean>>)

Source:
SkipWhile.cs
Source:
SkipWhile.cs
Source:
SkipWhile.cs

지정된 조건이 true인 한 시퀀스의 요소를 바이패스한 다음 나머지 요소를 반환합니다.

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Generic::IAsyncEnumerable<TSource> ^ SkipWhile(System::Collections::Generic::IAsyncEnumerable<TSource> ^ source, Func<TSource, System::Threading::CancellationToken, System::Threading::Tasks::ValueTask<bool>> ^ predicate);
public static System.Collections.Generic.IAsyncEnumerable<TSource> SkipWhile<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, Func<TSource,System.Threading.CancellationToken,System.Threading.Tasks.ValueTask<bool>> predicate);
static member SkipWhile : System.Collections.Generic.IAsyncEnumerable<'Source> * Func<'Source, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<bool>> -> System.Collections.Generic.IAsyncEnumerable<'Source>
<Extension()>
Public Function SkipWhile(Of TSource) (source As IAsyncEnumerable(Of TSource), predicate As Func(Of TSource, CancellationToken, ValueTask(Of Boolean))) As IAsyncEnumerable(Of TSource)

형식 매개 변수

TSource

원본 요소의 형식입니다.

매개 변수

source
IAsyncEnumerable<TSource>

IAsyncEnumerable<T> 요소를 반환할 값입니다.

predicate
Func<TSource,CancellationToken,ValueTask<Boolean>>

조건에 대한 각 요소를 테스트하는 함수입니다.

반품

IAsyncEnumerable<TSource>

IAsyncEnumerable<T> 조건자에서 지정한 테스트를 통과하지 않는 선형 계열의 첫 번째 요소에서 시작하는 입력 시퀀스의 요소를 포함하는 요소입니다.

예외

predicatenull입니다.

적용 대상

SkipWhile<TSource>(IAsyncEnumerable<TSource>, Func<TSource,Int32,CancellationToken,ValueTask<Boolean>>)

Source:
SkipWhile.cs
Source:
SkipWhile.cs
Source:
SkipWhile.cs

지정된 조건이 true인 한 시퀀스의 요소를 바이패스한 다음 나머지 요소를 반환합니다. 요소의 인덱스는 조건자 함수의 논리에 사용됩니다.

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Generic::IAsyncEnumerable<TSource> ^ SkipWhile(System::Collections::Generic::IAsyncEnumerable<TSource> ^ source, Func<TSource, int, System::Threading::CancellationToken, System::Threading::Tasks::ValueTask<bool>> ^ predicate);
public static System.Collections.Generic.IAsyncEnumerable<TSource> SkipWhile<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, Func<TSource,int,System.Threading.CancellationToken,System.Threading.Tasks.ValueTask<bool>> predicate);
static member SkipWhile : System.Collections.Generic.IAsyncEnumerable<'Source> * Func<'Source, int, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<bool>> -> System.Collections.Generic.IAsyncEnumerable<'Source>
<Extension()>
Public Function SkipWhile(Of TSource) (source As IAsyncEnumerable(Of TSource), predicate As Func(Of TSource, Integer, CancellationToken, ValueTask(Of Boolean))) As IAsyncEnumerable(Of TSource)

형식 매개 변수

TSource

원본 요소의 형식입니다.

매개 변수

source
IAsyncEnumerable<TSource>

IAsyncEnumerable<T> 요소를 반환할 값입니다.

predicate
Func<TSource,Int32,CancellationToken,ValueTask<Boolean>>

조건에 대한 각 요소를 테스트하는 함수입니다. 함수의 두 번째 매개 변수는 소스 요소의 인덱스를 나타냅니다.

반품

IAsyncEnumerable<TSource>

IAsyncEnumerable<T> 조건자에서 지정한 테스트를 통과하지 않는 선형 계열의 첫 번째 요소에서 시작하는 입력 시퀀스의 요소를 포함하는 요소입니다.

예외

predicatenull입니다.

적용 대상

SkipWhile<TSource>(IAsyncEnumerable<TSource>, Func<TSource,Boolean>)

Source:
SkipWhile.cs
Source:
SkipWhile.cs
Source:
SkipWhile.cs

지정된 조건이 true인 한 시퀀스의 요소를 바이패스한 다음 나머지 요소를 반환합니다.

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Generic::IAsyncEnumerable<TSource> ^ SkipWhile(System::Collections::Generic::IAsyncEnumerable<TSource> ^ source, Func<TSource, bool> ^ predicate);
public static System.Collections.Generic.IAsyncEnumerable<TSource> SkipWhile<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, Func<TSource,bool> predicate);
static member SkipWhile : System.Collections.Generic.IAsyncEnumerable<'Source> * Func<'Source, bool> -> System.Collections.Generic.IAsyncEnumerable<'Source>
<Extension()>
Public Function SkipWhile(Of TSource) (source As IAsyncEnumerable(Of TSource), predicate As Func(Of TSource, Boolean)) As IAsyncEnumerable(Of TSource)

형식 매개 변수

TSource

원본 요소의 형식입니다.

매개 변수

source
IAsyncEnumerable<TSource>

IAsyncEnumerable<T> 요소를 반환할 값입니다.

predicate
Func<TSource,Boolean>

조건에 대한 각 요소를 테스트하는 함수입니다.

반품

IAsyncEnumerable<TSource>

IAsyncEnumerable<T> 조건자에서 지정한 테스트를 통과하지 않는 선형 계열의 첫 번째 요소에서 시작하는 입력 시퀀스의 요소를 포함하는 요소입니다.

예외

predicatenull입니다.

적용 대상

SkipWhile<TSource>(IAsyncEnumerable<TSource>, Func<TSource,Int32,Boolean>)

Source:
SkipWhile.cs
Source:
SkipWhile.cs
Source:
SkipWhile.cs

지정된 조건이 true인 한 시퀀스의 요소를 바이패스한 다음 나머지 요소를 반환합니다. 요소의 인덱스는 조건자 함수의 논리에 사용됩니다.

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Generic::IAsyncEnumerable<TSource> ^ SkipWhile(System::Collections::Generic::IAsyncEnumerable<TSource> ^ source, Func<TSource, int, bool> ^ predicate);
public static System.Collections.Generic.IAsyncEnumerable<TSource> SkipWhile<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, Func<TSource,int,bool> predicate);
static member SkipWhile : System.Collections.Generic.IAsyncEnumerable<'Source> * Func<'Source, int, bool> -> System.Collections.Generic.IAsyncEnumerable<'Source>
<Extension()>
Public Function SkipWhile(Of TSource) (source As IAsyncEnumerable(Of TSource), predicate As Func(Of TSource, Integer, Boolean)) As IAsyncEnumerable(Of TSource)

형식 매개 변수

TSource

원본 요소의 형식입니다.

매개 변수

source
IAsyncEnumerable<TSource>

IAsyncEnumerable<T> 요소를 반환할 값입니다.

predicate
Func<TSource,Int32,Boolean>

조건에 대한 각 요소를 테스트하는 함수입니다. 함수의 두 번째 매개 변수는 소스 요소의 인덱스를 나타냅니다.

반품

IAsyncEnumerable<TSource>

IAsyncEnumerable<T> 조건자에서 지정한 테스트를 통과하지 않는 선형 계열의 첫 번째 요소에서 시작하는 입력 시퀀스의 요소를 포함하는 요소입니다.

예외

predicatenull입니다.

적용 대상