src/Pure/name.scala
author haftmann
Mon, 20 Jan 2025 22:15:11 +0100
changeset 81876 ac0716ca151b
parent 80272 9f89b3c41460
permissions -rw-r--r--
systematic checks for bit operations and more rules on symbolic terms

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

Items with formal name.
*/

package isabelle


object Name {
  trait T { def name: String }

  type Data[A] = Map[String, A]
}