Package

ammonite.repl

tools

Permalink

package tools

Things that are available inside the Ammonite REPL, are really convenient to have available.

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

Type Members

  1. class Desugared extends AnyRef

    Permalink
  2. case class GrepResult(spans: Seq[(Int, Int)], text: Str) extends Product with Serializable

    Permalink
  3. trait Grepper[T] extends AnyRef

    Permalink
  4. trait IvyConstructor extends AnyRef

    Permalink
  5. case class IvyThing(resolvers: () ⇒ List[Resolver]) extends Product with Serializable

    Permalink

    Resolve artifacts from Ivy.

    Resolve artifacts from Ivy. Originally taken from

    http://makandracards.com/evgeny-goldin/5817-calling-ivy-from-groovy-or-java

    And transliterated into Scala. I have no idea how or why it works.

  6. sealed trait Resolver extends AnyRef

    Permalink

    A thin wrapper around RepositoryResolver, which wraps them and provides hashability in order to set the cache tags.

    A thin wrapper around RepositoryResolver, which wraps them and provides hashability in order to set the cache tags. This lets us invalidate the ivy resolution cache if the set of resolvers changes

  7. trait Resolvers extends AnyRef

    Permalink
  8. case class tail(interval: Int, prefix: Int) extends Function[Path, Iterator[String]] with Product with Serializable

    Permalink

Value Members

  1. object GrepResult extends Serializable

    Permalink
  2. object Grepper

    Permalink
  3. object IvyConstructor extends IvyConstructor

    Permalink
  4. object IvyThing extends Serializable

    Permalink
  5. object Resolver

    Permalink
  6. object Resolvers

    Permalink
  7. object browse

    Permalink
  8. object desugar

    Permalink
  9. object grep

    Permalink

    Lets you filter a list by searching for a matching string or regex within the pretty-printed contents.

  10. object tail extends tail

    Permalink

    Follows a file as it is written, handy e.g.

    Follows a file as it is written, handy e.g. for log files. Returns an iterator which you can then print to standard out or use for other things.

  11. object time

    Permalink

    Records how long the given computation takes to run, returning the duration in addition to the return value of that computation

Inherited from AnyRef

Inherited from Any

Ungrouped