src/Pure/ROOT.scala
changeset 67885 839a624aabb9
parent 65761 ce909161d030
child 68131 62a3294edda3
equal deleted inserted replaced
67884:43af581d7d8e 67885:839a624aabb9
    19   val commas = Library.commas _
    19   val commas = Library.commas _
    20   val commas_quote = Library.commas_quote _
    20   val commas_quote = Library.commas_quote _
    21   def proper[A](x: A): Option[A] = Library.proper(x)
    21   def proper[A](x: A): Option[A] = Library.proper(x)
    22   val proper_string = Library.proper_string _
    22   val proper_string = Library.proper_string _
    23   def proper_list[A](list: List[A]): Option[List[A]] = Library.proper_list(list)
    23   def proper_list[A](list: List[A]): Option[List[A]] = Library.proper_list(list)
       
    24 
       
    25   type UUID = java.util.UUID
       
    26   def UUID(): UUID = java.util.UUID.randomUUID()
    24 }
    27 }