Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
6answers
458 views

scala coalesces multiple function call parameters into a Tuple — can this be disabled?

This is a troublesome violation of type safety in my project, so I'm looking for a way to disable it. It seems that if a function takes an AnyRef (or a java.lang.Object), you can call the function ...
6
votes
5answers
329 views

Converting a list of lists to a tuple in Python

I have a list of lists (generated with a simple list comprehension): >>> base_lists = [[a, b] for a in range(1, 3) for b in range(1, 6)] >>> base_lists ...