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

◆ UInt16View

ushort [] System.Runtime.Intrinsics.Vector256DebugView< T >.UInt16View
get

Definition at line 79 of file Vector256DebugView.cs.

80 {
81 get
82 {
83 ushort[] array = new ushort[16];
84 Unsafe.WriteUnaligned(ref Unsafe.As<ushort, byte>(ref array[0]), _value);
85 return array;
86 }
87 }