dotnet-core/release-notes/3.0/preview/api-diff/preview2/3.0-preview2_System.Runtime.Intrinsics.md
Ahson Khan c8cb26c4ee
Add API diff between .NET Core 3.0 preview1 and preview2. (#2255)
* Add API diff between .NET Core 3.0 preview1 and preview2.

* Generate the API diff using API reviewer to follow the consistent
formatting.

* Only diff ref assemblies that are in-box (M.Netcore.App).
2019-01-28 21:03:59 -08:00

1.6 KiB

System.Runtime.Intrinsics

 namespace System.Runtime.Intrinsics {
-    public readonly struct Vector128<T> where T : struct {
+    public readonly struct Vector128<T> : IEquatable<Vector128<T>>, IFormattable where T : struct {
+        public static int Count { get; }
+        public override bool Equals(object obj);
+        public bool Equals(Vector128<T> other);
+        public override int GetHashCode();
+        public override string ToString();
+        public string ToString(string format);
+        public string ToString(string format, IFormatProvider formatProvider);
     }
-    public readonly struct Vector256<T> where T : struct {
+    public readonly struct Vector256<T> : IEquatable<Vector256<T>>, IFormattable where T : struct {
+        public static int Count { get; }
+        public override bool Equals(object obj);
+        public bool Equals(Vector256<T> other);
+        public override int GetHashCode();
+        public override string ToString();
+        public string ToString(string format);
+        public string ToString(string format, IFormatProvider formatProvider);
     }
-    public readonly struct Vector64<T> where T : struct {
+    public readonly struct Vector64<T> : IEquatable<Vector64<T>>, IFormattable where T : struct {
+        public static int Count { get; }
+        public override bool Equals(object obj);
+        public bool Equals(Vector64<T> other);
+        public override int GetHashCode();
+        public override string ToString();
+        public string ToString(string format);
+        public string ToString(string format, IFormatProvider formatProvider);
     }
 }