Share via


ImmutableQueue.Create 메서드

정의

오버로드

Create<T>()

변경할 수 없는 빈 큐를 만듭니다.

Create<T>(ReadOnlySpan<T>)

지정된 항목 배열이 포함된 변경할 수 없는 새 큐를 만듭니다.

Create<T>(T)

지정된 항목이 포함된 변경할 수 없는 새 큐를 만듭니다.

Create<T>(T[])

지정된 항목 배열이 포함된 변경할 수 없는 새 큐를 만듭니다.

Create<T>()

Source:
ImmutableQueue.cs
Source:
ImmutableQueue.cs
Source:
ImmutableQueue.cs

변경할 수 없는 빈 큐를 만듭니다.

public:
generic <typename T>
 static System::Collections::Immutable::ImmutableQueue<T> ^ Create();
public static System.Collections.Immutable.ImmutableQueue<T> Create<T> ();
static member Create : unit -> System.Collections.Immutable.ImmutableQueue<'T>
Public Function Create(Of T) () As ImmutableQueue(Of T)

형식 매개 변수

T

변경할 수 없는 큐에 저장할 항목의 형식입니다.

반환

변경할 수 없는 빈 큐입니다.

적용 대상

Create<T>(ReadOnlySpan<T>)

Source:
ImmutableQueue.cs
Source:
ImmutableQueue.cs

지정된 항목 배열이 포함된 변경할 수 없는 새 큐를 만듭니다.

public:
generic <typename T>
 static System::Collections::Immutable::ImmutableQueue<T> ^ Create(ReadOnlySpan<T> items);
public static System.Collections.Immutable.ImmutableQueue<T> Create<T> (ReadOnlySpan<T> items);
static member Create : ReadOnlySpan<'T> -> System.Collections.Immutable.ImmutableQueue<'T>
Public Function Create(Of T) (items As ReadOnlySpan(Of T)) As ImmutableQueue(Of T)

형식 매개 변수

T

변경할 수 없는 큐에 있는 항목의 형식입니다.

매개 변수

items
ReadOnlySpan<T>

큐를 미리 채워야 하는 항목이 들어 있는 범위입니다.

반환

지정된 항목이 포함된 변경할 수 없는 새 큐입니다.

적용 대상

Create<T>(T)

Source:
ImmutableQueue.cs
Source:
ImmutableQueue.cs
Source:
ImmutableQueue.cs

지정된 항목이 포함된 변경할 수 없는 새 큐를 만듭니다.

public:
generic <typename T>
 static System::Collections::Immutable::ImmutableQueue<T> ^ Create(T item);
public static System.Collections.Immutable.ImmutableQueue<T> Create<T> (T item);
static member Create : 'T -> System.Collections.Immutable.ImmutableQueue<'T>
Public Function Create(Of T) (item As T) As ImmutableQueue(Of T)

형식 매개 변수

T

변경할 수 없는 큐에 있는 항목의 형식입니다.

매개 변수

item
T

큐를 미리 채울 항목입니다.

반환

지정된 항목이 포함된 변경할 수 없는 새 큐입니다.

적용 대상

Create<T>(T[])

Source:
ImmutableQueue.cs
Source:
ImmutableQueue.cs
Source:
ImmutableQueue.cs

지정된 항목 배열이 포함된 변경할 수 없는 새 큐를 만듭니다.

public:
generic <typename T>
 static System::Collections::Immutable::ImmutableQueue<T> ^ Create(... cli::array <T> ^ items);
public static System.Collections.Immutable.ImmutableQueue<T> Create<T> (params T[] items);
static member Create : 'T[] -> System.Collections.Immutable.ImmutableQueue<'T>
Public Function Create(Of T) (ParamArray items As T()) As ImmutableQueue(Of T)

형식 매개 변수

T

변경할 수 없는 큐에 있는 항목의 형식입니다.

매개 변수

items
T[]

큐를 미리 채우는 데 사용할 항목이 포함된 배열입니다.

반환

지정된 항목이 포함된 변경할 수 없는 새 큐입니다.

적용 대상