StartOrStop

public enum StartOrStop : Equatable

A Point which can be either a start or stop or none.

  • Undocumented

    Declaration

    Swift

    case none
  • Undocumented

    Declaration

    Swift

    case start(count: Int)
  • Undocumented

    Declaration

    Swift

    case stop(count: Int)
  • Creates a StartOrStop.start with the given start amount. If start is 0, a .none value will be created.

    Declaration

    Swift

    public init(start: Int)
  • Creates a StartOrStop.stop with the given stop amount. If stop is 0, a .none value will be created.

    Declaration

    Swift

    public init(stop: Int)