Scalax

This document is the API specification for Scalax

Class Summary
sealed class typeOf [T](val implicit manifest : scala.reflect.Manifest[T]) extends AnyRef
Convenience class to avoid working with manifests directly.
Object Summary
object typeOf extends AnyRef
Companion object providing utility methods to easily obtain a typeOf instance either directly from a Scala type or from an object value. For example, try the following:
  • typeOf[Int]
  • typeOf(1)
  • typeOf[Int] == typeOf(1)
  • typeOf[List[List[Int]]].toString