Package

hw

generics

Permalink

package generics

Visibility
  1. Public
  2. All

Type Members

  1. case class Cons[A](hd: A, tl: MyList[A]) extends MyList[A] with Product with Serializable

    Permalink
  2. case class Empty[A]() extends MyList[A] with Product with Serializable

    Permalink
  3. trait ListLike[E, L] extends AnyRef

    Permalink

    A trait for list-like collections, where E is the type of the element and L is the type of the list-like collection.

    A trait for list-like collections, where E is the type of the element and L is the type of the list-like collection.

  4. sealed trait MyList[A] extends ListLike[A, MyList[A]]

    Permalink

    A linked list that implements the ListLike trait.

  5. trait Ordered[A] extends AnyRef

    Permalink

    A trait for ordered values.

  6. trait Ordering extends AnyRef

    Permalink

    A trait that represents how two values are ordered.

  7. trait T1[X, Y] extends AnyRef

    Permalink
  8. trait T2[X, Y, Z, W] extends AnyRef

    Permalink
  9. trait T3[A, B, C, D, E, F, G] extends AnyRef

    Permalink

Value Members

  1. object EQ extends Ordering with Product with Serializable

    Permalink
  2. object GT extends Ordering with Product with Serializable

    Permalink
  3. object LT extends Ordering with Product with Serializable

    Permalink

Ungrouped