This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
import Cocoa | |
final class Potrace { | |
class Point<T> { | |
var x: T | |
var y: T | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
@available(iOS 13.0, *) | |
typealias UserDataSource = UITableViewDiffableDataSource<TblSection, YoutubeVideoModel> | |
@available(iOS 13.0, *) | |
typealias UserSnapshot = NSDiffableDataSourceSnapshot<TblSection, YoutubeVideoModel> | |
enum TblSection{ | |
case first |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
struct UserModel: Equatable{ | |
var name: String = "" | |
init(name: String){ | |
self.name = name | |
} | |
} |