changeset 77614 | b619d80f61fa |
parent 77515 | 6aae7486e94a |
child 78012 | 61c92140a6d2 |
--- a/src/Pure/ROOT.scala Sat Mar 11 13:37:58 2023 +0100 +++ b/src/Pure/ROOT.scala Sat Mar 11 14:18:56 2023 +0100 @@ -25,4 +25,5 @@ val proper_string = Library.proper_string _ def proper_list[A](list: List[A]): Option[List[A]] = Library.proper_list(list) def if_proper[A](x: Iterable[A], body: => String): String = Library.if_proper(x, body) + def if_proper(b: Boolean, body: => String): String = Library.if_proper(b, body) }