Zac
Zac
All very good points (I had forgotten Scala can do aliases). True, we can use pattern matching, although we generally avoid it when there is a simple, single case e.g.,...
+1. We have a few data types that mimic Try and it works nicely (for instance, a ProcedureResult that wraps stored procedure calls). It's also nice for building cascading validation...
Nope. 12.2.6 and JDK 8.
+1 would love to see this.
I'm seeing this problem as well... a very simple test application, single table. Using specs2 for a basic test: first insert a row, then query for a single row by...
A little more information on my previous post: Adding to @RichyHBM's findings – indeed, I can execute several Slick calls _within the same test case so long as its in...
Agreed. Last night I removed play-slick from my configuration, and am now using straight up Slick (3.1.1), and it's working fine. So there must be something in the play-slick integration...
Part of the problem is that the "generate Mayday flags" phase is added to every target. We have 3 testing targets to Mayday flags get generated 3 times and it's...
What I would really love is a way to specify _which targets_ Mayday should be run on, much like a Podspec. That way I could have it run on the...
No, I get that... I mean, make it an option to provide an implicit -- so I would need to declare, for instance, `implicit val myLocalCurrency = EUR` or something...