// // ViewController.swift // ConcurrentPerformTest // // Created by Eric Hovhannisyan on 02.09.22. // import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() let array = [Int](repeating: 0, count: 5000) let k = Buffer(array: array) print(k) } }