implicit def string2boolean()

in src/main/scala/pa/package.scala [45:49]


  implicit def string2boolean(s: String): Boolean = s match {
    case "Yes" => true
    case "No" => false
    case _ => throw new RuntimeException("Unexpected value for boolean: " + s)
  }