Filter

cronic.Filter
case class Filter(start: Int, stop: Int, step: Int)

A component of a schedule's field

n => Comp(n, n, 0) n..m => Comp(n, m, 1) n/s => Comp(n, -1, s) n..m/s => Comp(n, m, s)

Invariants:

  • min < start < max
  • stop < max
  • step >= 0

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product