TimeRange
public struct TimeRange
Specifies a range of time that would allow you to request data points that happened within that time range. The operation works much like the Swift Range object.
TimeRange can work with partial and close ranges
An example of a closed range would be requesting all times from 0 to 2
let timeRange = TimeRange(0...2)
An example of a partialRange would be asking for everything up to 2
let timeRange = TimeRange(...2)
or anything from 2
let timeRange = TimeRange(2...)
-
The start value of the time range
Declaration
Swift
public var start: TimeInterval
-
The end value of the time range
Declaration
Swift
public var end: TimeInterval?
-
Creates an instance equivalent to the given range.
Declaration
Swift
public init(_ range: PartialRangeFrom<TimeInterval>)
-
Creates an instance equivalent to the given range.
Declaration
Swift
public init(_ range: PartialRangeThrough<TimeInterval>)
-
Creates an instance equivalent to the given range.
Declaration
Swift
public init(_ range: ClosedRange<TimeInterval>)