Node

public struct Node

Undocumented

  • The payload contained herein.

    Declaration

    Swift

    public var payload: Value
  • The interval in which the payload occurs.

    Declaration

    Swift

    public let interval: Range<Metric>
  • Creates an ISTPayload with the given interval, value, and max values.

    Declaration

    Swift

    @inlinable
    public init(interval: Range<Metric>, value: Value, max: Metric? = nil)