When I run the swift convertor to convert to v3 this got added to one of my VCs'
fileprivate func < <T : Comparable>(lhs: T?, rhs: T?) -> Bool {
switch (lhs, rhs) {
case let (l?, r?):
return l < r
case (nil, _?):
return true
default:
return false
}
}
class MyViewcontroller:UIViewController
So why did this function get added?