case classRichSlice(slices: List[Slice]) extends Serializable with Product
A Rich Slice object, containing a sequence of slice expressions
import io.radanalytics.silex.util.richslice._
RichSlice(1) // selects element(1)
RichSlice(2, 3, 5 to 11) // selects elements 2, 3 and 5 through 11
RichSlice(9 to 0 by -1) // selects first 10 elements in reverse order
RichSlice(20 to * by 2) // selects elements 20 to end, by 2s
Linear Supertypes
Product, Equals, Serializable, Serializable, AnyRef, Any
A Rich Slice object, containing a sequence of slice expressions