ImmutableArrayExtensions.Any 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
Any<T>(ImmutableArray<T>) |
배열에 요소가 들어 있는지 여부를 나타내는 값을 가져옵니다. |
Any<T>(ImmutableArray<T>.Builder) |
이 컬렉션에 요소가 들어 있는지 여부를 나타내는 값을 반환합니다. |
Any<T>(ImmutableArray<T>, Func<T,Boolean>) |
배열에 지정된 조건과 일치하는 요소가 들어 있는지 여부를 나타내는 값을 가져옵니다. |
Any<T>(ImmutableArray<T>)
- Source:
- ImmutableArrayExtensions.cs
- Source:
- ImmutableArrayExtensions.cs
- Source:
- ImmutableArrayExtensions.cs
배열에 요소가 들어 있는지 여부를 나타내는 값을 가져옵니다.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static bool Any(System::Collections::Immutable::ImmutableArray<T> immutableArray);
public static bool Any<T> (this System.Collections.Immutable.ImmutableArray<T> immutableArray);
static member Any : System.Collections.Immutable.ImmutableArray<'T> -> bool
<Extension()>
Public Function Any(Of T) (immutableArray As ImmutableArray(Of T)) As Boolean
형식 매개 변수
- T
컬렉션에 의해 포함되는 요소의 형식입니다.
매개 변수
- immutableArray
- ImmutableArray<T>
요소를 확인할 배열입니다.
반환
배열에 요소가 들어 있으면 true
이고, 그렇지 않으면 false
입니다.
적용 대상
Any<T>(ImmutableArray<T>.Builder)
- Source:
- ImmutableArrayExtensions.cs
- Source:
- ImmutableArrayExtensions.cs
- Source:
- ImmutableArrayExtensions.cs
이 컬렉션에 요소가 들어 있는지 여부를 나타내는 값을 반환합니다.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static bool Any(System::Collections::Immutable::ImmutableArray<T>::Builder ^ builder);
public static bool Any<T> (this System.Collections.Immutable.ImmutableArray<T>.Builder builder);
static member Any : System.Collections.Immutable.ImmutableArray<'T>.Builder -> bool
<Extension()>
Public Function Any(Of T) (builder As ImmutableArray(Of T).Builder) As Boolean
형식 매개 변수
- T
배열 요소의 형식입니다.
매개 변수
- builder
- ImmutableArray<T>.Builder
일치하는 항목을 확인할 작성기입니다.
반환
배열 작성기에 요소가 들어 있으면 true
이고, 그렇지 않으면 false
입니다.
적용 대상
Any<T>(ImmutableArray<T>, Func<T,Boolean>)
- Source:
- ImmutableArrayExtensions.cs
- Source:
- ImmutableArrayExtensions.cs
- Source:
- ImmutableArrayExtensions.cs
배열에 지정된 조건과 일치하는 요소가 들어 있는지 여부를 나타내는 값을 가져옵니다.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static bool Any(System::Collections::Immutable::ImmutableArray<T> immutableArray, Func<T, bool> ^ predicate);
public static bool Any<T> (this System.Collections.Immutable.ImmutableArray<T> immutableArray, Func<T,bool> predicate);
static member Any : System.Collections.Immutable.ImmutableArray<'T> * Func<'T, bool> -> bool
<Extension()>
Public Function Any(Of T) (immutableArray As ImmutableArray(Of T), predicate As Func(Of T, Boolean)) As Boolean
형식 매개 변수
- T
컬렉션에 의해 포함되는 요소의 형식입니다.
매개 변수
- immutableArray
- ImmutableArray<T>
요소를 확인할 배열입니다.
반환
요소가 지정된 조건과 일치하면 true
이고, 그렇지 않으면 false
입니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET