mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-10 13:29:23 +00:00
16 lines
290 B
Swift
16 lines
290 B
Swift
//
|
|
// ClosedRange+Utils.swift
|
|
// GraphTest
|
|
//
|
|
// Created by Andrei Salavei on 3/11/19.
|
|
// Copyright © 2019 Andrei Salavei. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension ClosedRange where Bound: Numeric {
|
|
var distance: Bound {
|
|
return upperBound - lowerBound
|
|
}
|
|
}
|