Cannot find 'isUniquelyReferencedNonObjC' in scope

323 Views Asked by At
import Foundation

final class Ref<T> {
  var val : T
  init(_ v : T) {val = v}
}

struct Box<T> {
    var ref : Ref<T>
    init(_ x : T) { ref = Ref(x) }

    var value: T {
        get { return ref.val }
        set {
          if (!isUniquelyReferencedNonObjC(&ref)) {
            ref = Ref(newValue)
            return
          }
          ref.val = newValue
        }
    }
}

Why doesn't the code above compile with "Cannot find 'isUniquelyReferencedNonObjC' in scope" error?

1

There are 1 best solutions below

0
On BEST ANSWER

Looks like isUniquelyReferencedNonObjC is deprecated in swift 5

You must use isKnownUniquelyReferenced(_:) for copy on write optimization.

Apple docs has an examples of code for your case.