Package

com.bazaarvoice.support.scala

control

Permalink

package control

Visibility
  1. Public
  2. All

Type Members

  1. case class RetryException(message: String, errors: List[Throwable]) extends MaxRetriesException with Product with Serializable

    Permalink

Value Members

  1. object assertion

    Permalink

    These wrappers for assert and require allow you to execute a block of code conditionally:

    These wrappers for assert and require allow you to execute a block of code conditionally:

    val result = withRequire(input == "valid") { foo(input) }

  2. object comprehension

    Permalink

    These methods generate lists using while and do...while loops, similar to the for comprehension.

    These methods generate lists using while and do...while loops, similar to the for comprehension.

    Thus, you can do:

    val result1: List[String] = do { g() } while (f() < 5) val result2: List[String] = while (f() < 5) { g() }

  3. object errorhandling

    Permalink

Ungrouped