You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
why did you use companion object for each EvalFunc[Tuple] in your files? I mean why those functions in companion objects are not defined within the class extending EvalFunc? Is there some performance adavantage?
I wanted to be able to test those methods without creating an instance of the parser. If I had to do it over I would have put them in a trait that is probably more scala idiomatic.
The extra tuple is just a bug. I believe I had an error and was doing some debugging and pulled apart the tuple to make it easier to see what was happening.
All of this code was created for a demo, so it isn't necessarily the cleanest.
Hi, 2 newbies questions:
thanks!
The text was updated successfully, but these errors were encountered: