Packages

p

spacro

util

package util

Utility classes, methods, and extension methods for spacro.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. util
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class LazyStackQueue[A] extends AnyRef

    A mutable data structure based on the following operations: push: adds to the top pop: takes from the top enqueue: adds to the bottom The other main feature is that you instantiate it with an Iterator of starting items, which it only traverses as necessary, buffering up to maxBufferSize elements at a time.

    A mutable data structure based on the following operations: push: adds to the top pop: takes from the top enqueue: adds to the bottom The other main feature is that you instantiate it with an Iterator of starting items, which it only traverses as necessary, buffering up to maxBufferSize elements at a time. Note that items enqueued into the LazyStackQueue will only be popped off after the source iterator is empty. LazyStackQueue should be viewed as "consuming" the iterator---you should not use the iterator again after passing it into the constructor.

  2. implicit final class RichAmazonMTurk extends AnyVal
  3. implicit final class RichMutableQueue[A] extends AnyVal
    Attributes
    protected[spacro]
  4. implicit final class RichMutableStack[A] extends AnyVal
    Attributes
    protected[spacro]
  5. implicit final class RichTry[A] extends AnyVal
    Attributes
    protected[spacro]
  6. sealed trait Span extends AnyRef
  7. case class SpanImpl(begin: Int, end: Int) extends Span with Product with Serializable

Value Members

  1. object Span

Inherited from AnyRef

Inherited from Any

Ungrouped