src/Pure/ROOT.scala
changeset 81605 91dacb5b6574
parent 81604 707c247194be
child 81638 fe7238c01809
equal deleted inserted replaced
81604:707c247194be 81605:91dacb5b6574
    27   val proper_string = Library.proper_string _
    27   val proper_string = Library.proper_string _
    28   def proper_list[A](list: List[A]): Option[List[A]] = Library.proper_list(list)
    28   def proper_list[A](list: List[A]): Option[List[A]] = Library.proper_list(list)
    29   def if_proper[A](x: Iterable[A], body: => String): String = Library.if_proper(x, body)
    29   def if_proper[A](x: Iterable[A], body: => String): String = Library.if_proper(x, body)
    30   def if_proper(b: Boolean, body: => String): String = Library.if_proper(b, body)
    30   def if_proper(b: Boolean, body: => String): String = Library.if_proper(b, body)
    31 }
    31 }
       
    32