Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
CreateRange< T >()
static
ImmutableStack
<
T
>
System.Collections.Immutable.ImmutableStack
<
T
>.CreateRange<
T
>
(
IEnumerable
<
T
>
items
)
inline
static
Definition at line
20
of file
ImmutableStack.cs
.
21
{
22
Requires.NotNull(items,
"items"
);
23
ImmutableStack<T>
immutableStack
=
ImmutableStack<T>
.Empty;
24
foreach
(T
item
in
items)
25
{
26
immutableStack
=
immutableStack
.Push(
item
);
27
}
28
return
immutableStack
;
29
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.ExceptionArgument.item
@ item
References
System.item
.
System
Collections
Immutable
ImmutableStack
Generated by
1.10.0