introduced a constant
Mar. 10th, 2014 10:56 am(fixed)
Turned out, have tons of it everywhere. Weird actually.
And no, I'm not saying it's good. I'm just seeing a pattern that worries me a little bit, but I don't know why.
E.g.
  
  type Outcome = Result[Any]
  val OK:Outcome = Good("OK")
Turned out, have tons of it everywhere. Weird actually.
And no, I'm not saying it's good. I'm just seeing a pattern that worries me a little bit, but I don't know why.
E.g.
  def executeJS(js: String): Result[Unit] = runJS(js) map asScala filter
    ("OK"==, wrong => s"Wrong response from browser: <<$wrong>>")