Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Pop< T >()

static IImmutableStack< T > System.Collections.Immutable.ImmutableStack< T >.Pop< T > ( this IImmutableStack< T > stack,
out T value )
inlinestatic

Definition at line 42 of file ImmutableStack.cs.

43 {
44 Requires.NotNull(stack, "stack");
45 value = stack.Peek();
46 return stack.Pop();
47 }

References System.value.