src/Pure/PIDE/document_id.scala
author wenzelm
Tue, 09 Feb 2021 15:40:23 +0100
changeset 73245 f69cbb59813e
parent 71601 97ccf48c2f0c
child 75393 87ebf5a50283
permissions -rw-r--r--
more robust interrupt handling as in Future.forked_results (amending 64df1e514005);

/*  Title:      Pure/PIDE/document_id.scala
    Author:     Makarius

Unique identifiers for document structure.

NB: ML ticks forwards > 0, JVM ticks backwards < 0.
*/

package isabelle


object Document_ID
{
  type Generic = Long
  type Version = Generic
  type Command = Generic
  type Exec = Generic

  val none: Generic = 0
  val make: Counter = Counter.make()

  def apply(id: Generic): String = Value.Long.apply(id)
  def unapply(s: String): Option[Generic] = Value.Long.unapply(s)
}