Skip to content

Instantly share code, notes, and snippets.

@DJNgoma
DJNgoma / NSDecimalNumber.swift
Created April 26, 2016 03:45 — forked from mattt/NSDecimalNumber.swift
NSDecimalNumber Additions for Swift
import Foundation
// MARK: - Comparable
extension NSDecimalNumber: Comparable {}
public func ==(lhs: NSDecimalNumber, rhs: NSDecimalNumber) -> Bool {
return lhs.compare(rhs) == .OrderedSame
}