Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Create< T >()
[2/3]
static
ImmutableStack
<
T
>
System.Collections.Immutable.ImmutableStack
<
T
>.Create<
T
>
(
params
T
[]
items
)
inline
static
Definition at line
31
of file
ImmutableStack.cs
.
32
{
33
Requires.NotNull(items,
"items"
);
34
ImmutableStack<T>
immutableStack
=
ImmutableStack<T>
.Empty;
35
foreach
(T
value
in
items)
36
{
37
immutableStack
=
immutableStack
.Push(
value
);
38
}
39
return
immutableStack
;
40
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.ExceptionArgument.value
@ value
References
System.value
.
System
Collections
Immutable
ImmutableStack
Generated by
1.10.0