x_:
Attributes
- Source
- Interval.scala
- Graph
-
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
x_:.type
Members list
Value members
Concrete methods
Decomposes a multidimensional interval by extracting its constituent head 1D interval and remaining tail interval. It is essentially the inverse of Interval.x. Useful when chaining a match on a fixed number of dimensions, where this pattern will match in all but the last position, e.g.,
Decomposes a multidimensional interval by extracting its constituent head 1D interval and remaining tail interval. It is essentially the inverse of Interval.x. Useful when chaining a match on a fixed number of dimensions, where this pattern will match in all but the last position, e.g.,
dataIntervals.collect:
case horizontal x_: vertical x_: depth =>
randSubinterval(horizontal) x randSubinterval(vertical) x randSubinterval(depth)
Attributes
- Source
- Interval.scala
Specific to a two-dimensional interval, decomposes it by extracting its two constituent 1D intervals. It is essentially the inverse of Interval1D.x. Useful when chaining a match on a fixed number of dimensions, where this pattern will match in the last position, e.g.,
Specific to a two-dimensional interval, decomposes it by extracting its two constituent 1D intervals. It is essentially the inverse of Interval1D.x. Useful when chaining a match on a fixed number of dimensions, where this pattern will match in the last position, e.g.,
dataIntervals.collect:
case horizontal x_: vertical x_: depth =>
randSubinterval(horizontal) x randSubinterval(vertical) x randSubinterval(depth)
Attributes
- Source
- Interval.scala