5
votes
1answer
144 views

Matching BigInts in Scala

I'm currently in the process of learning scala, and I'm looking for some best practices/proper idioms for the use of pattern matching with BigInts. I'm writing some algorithmic code (for Project ...
1
vote
1answer
36 views

Which name should I choose for private abstract functionality with a public proxy?

I have an abstract class implementing some concrete functionality for its child classes: abstract class Function { def eval: Double = some_concrete_functionality_which_calls_fEval def simplify: ...