src/Pure/ROOT.scala
author wenzelm
Sun, 29 Jan 2017 13:43:17 +0100
changeset 64964 a0c985a57f7e
parent 64370 865b39487b5d
child 65712 ddd6dfc28e80
permissions -rw-r--r--
tuned proof;

/*  Title:      Pure/ROOT.scala
    Author:     Makarius

Root of isabelle package.
*/

package object isabelle
{
  val ERROR = Exn.ERROR
  val error = Exn.error _
  val cat_error = Exn.cat_error _

  def using[A <: { def close() }, B](x: A)(f: A => B): B = Library.using(x)(f)
  val space_explode = Library.space_explode _
  val split_lines = Library.split_lines _
  val cat_lines = Library.cat_lines _
  val terminate_lines = Library.terminate_lines _
  val quote = Library.quote _
  val commas = Library.commas _
  val commas_quote = Library.commas_quote _
}