You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Line 65 of Updatable.swift - is there any reason data needs to be inout?
publicfunc update(data:inoutData)->Self?
It makes this method unusable with immutable Data objects. The pointer generated in the closure is immutable so I don't see a reason to force the inout argument.
The text was updated successfully, but these errors were encountered:
Line 65 of Updatable.swift - is there any reason
data
needs to beinout
?It makes this method unusable with immutable
Data
objects. The pointer generated in the closure is immutable so I don't see a reason to force theinout
argument.The text was updated successfully, but these errors were encountered: