@@ -3,7 +3,7 @@ reload: Snippet.scala
33askTypeCompletion at Snippet.scala(1,34)
44================================================================================
55[response] askTypeCompletion at (1,34)
6- retrieved 192 members
6+ retrieved 211 members
77[inaccessible] protected def integralNum: math.Numeric.DoubleAsIfIntegral.type
88[inaccessible] protected def num: math.Numeric.DoubleIsFractional.type
99[inaccessible] protected def ord: math.Ordering.Double.type
@@ -109,10 +109,16 @@ def ^(x: Short): Int
109109def byteValue(): Byte
110110def ceil: Double
111111def compare(y: Double): Int
112+ def compare(y: Float): Int
113+ def compare(y: Int): Int
112114def compare(y: Long): Int
113115def compareTo(that: Double): Int
116+ def compareTo(that: Float): Int
117+ def compareTo(that: Int): Int
114118def compareTo(that: Long): Int
115119def compareTo(x$1: Double): Int
120+ def compareTo(x$1: Float): Int
121+ def compareTo(x$1: Integer): Int
116122def compareTo(x$1: Long): Int
117123def doubleValue(): Double
118124def ensuring(cond: Boolean): Int
@@ -136,6 +142,10 @@ def round: Long
136142def shortValue(): Short
137143def to(end: Double): Range.Partial[Double,scala.collection.immutable.NumericRange[Double]]
138144def to(end: Double,step: Double): scala.collection.immutable.NumericRange.Inclusive[Double]
145+ def to(end: Float): Range.Partial[Float,scala.collection.immutable.NumericRange[Float]]
146+ def to(end: Float,step: Float): scala.collection.immutable.NumericRange.Inclusive[Float]
147+ def to(end: Int): scala.collection.immutable.Range.Inclusive
148+ def to(end: Int,step: Int): scala.collection.immutable.Range.Inclusive
139149def to(end: Long): scala.collection.immutable.NumericRange.Inclusive[Long]
140150def to(end: Long,step: Long): scala.collection.immutable.NumericRange.Inclusive[Long]
141151def toBinaryString: String
@@ -157,6 +167,10 @@ def unary_~: Int
157167def underlying(): AnyRef
158168def until(end: Double): Range.Partial[Double,scala.collection.immutable.NumericRange[Double]]
159169def until(end: Double,step: Double): scala.collection.immutable.NumericRange.Exclusive[Double]
170+ def until(end: Float): Range.Partial[Float,scala.collection.immutable.NumericRange[Float]]
171+ def until(end: Float,step: Float): scala.collection.immutable.NumericRange.Exclusive[Float]
172+ def until(end: Int): scala.collection.immutable.Range
173+ def until(end: Int,step: Int): scala.collection.immutable.Range
160174def until(end: Long): scala.collection.immutable.NumericRange.Exclusive[Long]
161175def until(end: Long,step: Long): scala.collection.immutable.NumericRange.Exclusive[Long]
162176def |(x: Byte): Int
@@ -185,8 +199,12 @@ override def isValidInt: Boolean
185199override def isValidShort: Boolean
186200override def isWhole(): Boolean
187201override def max(that: Double): Double
202+ override def max(that: Float): Float
203+ override def max(that: Int): Int
188204override def max(that: Long): Long
189205override def min(that: Double): Double
206+ override def min(that: Float): Float
207+ override def min(that: Int): Int
190208override def min(that: Long): Long
191209override def signum: Int
192210private[this] val self: Double
0 commit comments