Skip to content

Instantly share code, notes, and snippets.

View mdziadkowiec's full-sized avatar
👨‍💻

Michał Dziadkowiec mdziadkowiec

👨‍💻
View GitHub Profile
import Foundation
// MARK: - Comparable
extension NSDecimalNumber: Comparable {}
public func ==(lhs: NSDecimalNumber, rhs: NSDecimalNumber) -> Bool {
return lhs.compare(rhs) == .OrderedSame
}