src/Pure/ROOT.scala
changeset 77614 b619d80f61fa
parent 77515 6aae7486e94a
child 78012 61c92140a6d2
equal deleted inserted replaced
77613:44f7b76d1106 77614:b619d80f61fa
    23   val commas_quote = Library.commas_quote _
    23   val commas_quote = Library.commas_quote _
    24   val proper_bool = Library.proper_bool _
    24   val proper_bool = Library.proper_bool _
    25   val proper_string = Library.proper_string _
    25   val proper_string = Library.proper_string _
    26   def proper_list[A](list: List[A]): Option[List[A]] = Library.proper_list(list)
    26   def proper_list[A](list: List[A]): Option[List[A]] = Library.proper_list(list)
    27   def if_proper[A](x: Iterable[A], body: => String): String = Library.if_proper(x, body)
    27   def if_proper[A](x: Iterable[A], body: => String): String = Library.if_proper(x, body)
       
    28   def if_proper(b: Boolean, body: => String): String = Library.if_proper(b, body)
    28 }
    29 }