dotnet-core/release-notes/3.0/preview/api-diff/preview6/3.0-preview6_System.Numerics.md
William Godbe 89589fec4d
Add API diff between .NET Core 3.0 preview5 and preview6. (#2841)
* Add API diff between .NET Core 3.0 preview5 and preview6.

* Fix title in Standalon-packages.md file
2019-06-10 16:02:34 -07:00

1 KiB

System.Numerics

 namespace System.Numerics {
     public static class BitOperations {
-        public static uint RotateLeft(uint value, int bitOffset);
+        public static uint RotateLeft(uint value, int offset);
-        public static ulong RotateLeft(ulong value, int bitOffset);
+        public static ulong RotateLeft(ulong value, int offset);
-        public static uint RotateRight(uint value, int bitOffset);
+        public static uint RotateRight(uint value, int offset);
-        public static ulong RotateRight(ulong value, int bitOffset);
+        public static ulong RotateRight(ulong value, int offset);
     }
     public struct Vector<T> : IEquatable<Vector<T>>, IFormattable where T : struct {
+        public Vector(ReadOnlySpan<byte> values);
+        public Vector(ReadOnlySpan<T> values);
+        public void CopyTo(Span<byte> destination);
+        public void CopyTo(Span<T> destination);
+        public bool TryCopyTo(Span<byte> destination);
+        public bool TryCopyTo(Span<T> destination);
     }
 }