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

◆ MaybeMutableValueType()

bool System.Linq.Expressions.Interpreter.LightCompiler.MaybeMutableValueType ( Type type)
inlineprivate

Definition at line 250 of file LightCompiler.cs.

251 {
252 if (type.IsValueType && !type.IsEnum)
253 {
254 return !type.IsPrimitive;
255 }
256 return false;
257 }

References System.type.

Referenced by System.Linq.Expressions.Interpreter.LightCompiler.EmitCopyValueType().