mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
17 lines
229 B
Swift
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()
|
|
}
|
|
}
|
|
}
|