@@ -10,6 +10,7 @@ public sealed partial class Crc32 : System.IO.Hashing.NonCryptographicHashAlgori
10
10
{
11
11
public Crc32 ( ) : base ( default ( int ) ) { }
12
12
public override void Append ( System . ReadOnlySpan < byte > source ) { }
13
+ public System . IO . Hashing . Crc32 Clone ( ) { throw null ; }
13
14
[ System . CLSCompliantAttribute ( false ) ]
14
15
public uint GetCurrentHashAsUInt32 ( ) { throw null ; }
15
16
protected override void GetCurrentHashCore ( System . Span < byte > destination ) { }
@@ -25,6 +26,7 @@ public override void Reset() { }
25
26
public sealed partial class Crc64 : System . IO . Hashing . NonCryptographicHashAlgorithm
26
27
{
27
28
public Crc64 ( ) : base ( default ( int ) ) { }
29
+ public System . IO . Hashing . Crc64 Clone ( ) { throw null ; }
28
30
public override void Append ( System . ReadOnlySpan < byte > source ) { }
29
31
[ System . CLSCompliantAttribute ( false ) ]
30
32
public ulong GetCurrentHashAsUInt64 ( ) { throw null ; }
@@ -64,6 +66,7 @@ public sealed partial class XxHash128 : System.IO.Hashing.NonCryptographicHashAl
64
66
public XxHash128 ( ) : base ( default ( int ) ) { }
65
67
public XxHash128 ( long seed ) : base ( default ( int ) ) { }
66
68
public override void Append ( System . ReadOnlySpan < byte > source ) { }
69
+ public System . IO . Hashing . XxHash128 Clone ( ) { throw null ; }
67
70
protected override void GetCurrentHashCore ( System . Span < byte > destination ) { }
68
71
public static byte [ ] Hash ( byte [ ] source ) { throw null ; }
69
72
public static byte [ ] Hash ( byte [ ] source , long seed ) { throw null ; }
@@ -77,6 +80,7 @@ public sealed partial class XxHash3 : System.IO.Hashing.NonCryptographicHashAlgo
77
80
public XxHash3 ( ) : base ( default ( int ) ) { }
78
81
public XxHash3 ( long seed ) : base ( default ( int ) ) { }
79
82
public override void Append ( System . ReadOnlySpan < byte > source ) { }
83
+ public System . IO . Hashing . XxHash3 Clone ( ) { throw null ; }
80
84
[ System . CLSCompliantAttribute ( false ) ]
81
85
public ulong GetCurrentHashAsUInt64 ( ) { throw null ; }
82
86
protected override void GetCurrentHashCore ( System . Span < byte > destination ) { }
@@ -94,6 +98,7 @@ public sealed partial class XxHash32 : System.IO.Hashing.NonCryptographicHashAlg
94
98
public XxHash32 ( ) : base ( default ( int ) ) { }
95
99
public XxHash32 ( int seed ) : base ( default ( int ) ) { }
96
100
public override void Append ( System . ReadOnlySpan < byte > source ) { }
101
+ public System . IO . Hashing . XxHash32 Clone ( ) { throw null ; }
97
102
[ System . CLSCompliantAttribute ( false ) ]
98
103
public uint GetCurrentHashAsUInt32 ( ) { throw null ; }
99
104
protected override void GetCurrentHashCore ( System . Span < byte > destination ) { }
@@ -111,6 +116,7 @@ public sealed partial class XxHash64 : System.IO.Hashing.NonCryptographicHashAlg
111
116
public XxHash64 ( ) : base ( default ( int ) ) { }
112
117
public XxHash64 ( long seed ) : base ( default ( int ) ) { }
113
118
public override void Append ( System . ReadOnlySpan < byte > source ) { }
119
+ public System . IO . Hashing . XxHash64 Clone ( ) { throw null ; }
114
120
[ System . CLSCompliantAttribute ( false ) ]
115
121
public ulong GetCurrentHashAsUInt64 ( ) { throw null ; }
116
122
protected override void GetCurrentHashCore ( System . Span < byte > destination ) { }
0 commit comments