Meshtastic-Apple/Meshtastic/Extensions/Int.swift
2023-04-25 17:56:57 -07:00

17 lines
229 B
Swift

//
// Int.swift
// Meshtastic
//
// Copyright(c) Garth Vander Houwen 4/25/23.
//
extension Int {
func numberOfDigits() -> Int {
if abs(self) < 10 {
return 1
} else {
return 1 + (self/10).numberOfDigits()
}
}
}