object SpanSugar extends SpanSugar
Companion object that facilitates the importing of SpanSugar
members as
an alternative to mixing it in. One use case is to import SpanSugar
members so you can use
them in the Scala interpreter:
$scala -classpath scalatest.jar Welcome to Scala version 2.9.1.final (Java HotSpot(TM) 64-Bit Server VM, Java 1.6.0_29). Type in expressions to have them evaluated. Type :help for more information. scala> import org.scalatest._ import org.scalatest._ scala> import concurrent.Eventually._ import org.scalatest.concurrent.Eventually._ scala> import time.SpanSugar._ import org.scalatest.time.SpanSugar._ scala> eventually(timeout(100 millis)) { 1 + 1 should equal (3) }
- Source
- SpanSugar.scala
- Alphabetic
- By Inheritance
- SpanSugar
- SpanSugar
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
- class FloatingGrainOfTime extends AnyRef
Class containing methods that return a
Span
time value calculated from theDouble
value passed to theFloatingGrainOfTime
constructor.Class containing methods that return a
Span
time value calculated from theDouble
value passed to theFloatingGrainOfTime
constructor.- Definition Classes
- SpanSugar
- class GrainOfTime extends AnyRef
Class containing methods that return a
Span
time value calculated from theLong
value passed to theGrainOfTime
constructor.Class containing methods that return a
Span
time value calculated from theLong
value passed to theGrainOfTime
constructor.- Definition Classes
- SpanSugar
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- implicit def convertDoubleToGrainOfTime(d: Double): FloatingGrainOfTime
Implicit conversion that adds time units methods to
Double
s.Implicit conversion that adds time units methods to
Double
s.- returns
a
FloatingGrainOfTime
wrapping the passedDouble
- Definition Classes
- SpanSugar
- implicit def convertFloatToGrainOfTime(f: Float): FloatingGrainOfTime
Implicit conversion that adds time units methods to
Float
s.Implicit conversion that adds time units methods to
Float
s.- returns
a
FloatingGrainOfTime
wrapping the passedFloat
- Definition Classes
- SpanSugar
- implicit def convertIntToGrainOfTime(i: Int): GrainOfTime
Implicit conversion that adds time units methods to
Int
s.Implicit conversion that adds time units methods to
Int
s.- returns
a
GrainOfTime
wrapping the passedInt
- Definition Classes
- SpanSugar
- implicit def convertLongToGrainOfTime(i: Long): GrainOfTime
Implicit conversion that adds time units methods to
Long
s.Implicit conversion that adds time units methods to
Long
s.- returns
a
GrainOfTime
wrapping the passedLong
- Definition Classes
- SpanSugar
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- implicit val postfixOps: postfixOps
- Definition Classes
- SpanSugar
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()