File tree 1 file changed +8
-0
lines changed
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -244,6 +244,7 @@ public struct _Hasher {
244
244
internal var _core : Core
245
245
246
246
// NOT @_inlineable
247
+ @effects ( releasenone)
247
248
public init ( ) {
248
249
self . _core = Core ( )
249
250
}
@@ -254,32 +255,39 @@ public struct _Hasher {
254
255
}
255
256
256
257
// NOT @_inlineable
258
+ @effects ( releasenone)
257
259
public mutating func append( bits: UInt ) {
258
260
_core. append ( bits)
259
261
}
260
262
// NOT @_inlineable
263
+ @effects ( releasenone)
261
264
public mutating func append( bits: UInt32 ) {
262
265
_core. append ( bits)
263
266
}
264
267
// NOT @_inlineable
268
+ @effects ( releasenone)
265
269
public mutating func append( bits: UInt64 ) {
266
270
_core. append ( bits)
267
271
}
268
272
269
273
// NOT @_inlineable
274
+ @effects ( releasenone)
270
275
public mutating func append( bits: Int ) {
271
276
_core. append ( UInt ( bitPattern: bits) )
272
277
}
273
278
// NOT @_inlineable
279
+ @effects ( releasenone)
274
280
public mutating func append( bits: Int32 ) {
275
281
_core. append ( UInt32 ( bitPattern: bits) )
276
282
}
277
283
// NOT @_inlineable
284
+ @effects ( releasenone)
278
285
public mutating func append( bits: Int64 ) {
279
286
_core. append ( UInt64 ( bitPattern: bits) )
280
287
}
281
288
282
289
// NOT @_inlineable
290
+ @effects ( releasenone)
283
291
public mutating func finalize( ) -> Int {
284
292
return Int ( truncatingIfNeeded: _core. finalize ( ) )
285
293
}
You can’t perform that action at this time.
0 commit comments