Skip to content

Commit

Permalink
SI-6422: add missing Fractional and Integral alias in scala package
Browse files Browse the repository at this point in the history
  • Loading branch information
Blaisorblade committed Sep 29, 2012
1 parent 7fd83bb commit c6866a2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/library/scala/package.scala
Expand Up @@ -95,7 +95,10 @@ package object scala {
val Equiv = scala.math.Equiv

type Fractional[T] = scala.math.Fractional[T]
val Fractional = scala.math.Fractional

type Integral[T] = scala.math.Integral[T]
val Integral = scala.math.Integral

type Numeric[T] = scala.math.Numeric[T]
val Numeric = scala.math.Numeric
Expand Down

0 comments on commit c6866a2

Please sign in to comment.