Alanna Stone
Alanna Stone
What happens if `print` is a method on the object, called with `print(a)`, instead of an extension? I wonder if this is due to the change in how givens are...
I think this is fixed in 0126ee95003e083d9dab7015e433881b80e4ecef
Actually - it's not. It does have to be the default posting language because of #2903
That's correct - I could have been more clear. Thanks for clarifying
Ahh, I see. Could it not be done like: ``` class NewType(?): def __init__(self, typename, type): ? def __getitem__(self, key): (type things) def __call__(self, arg): return arg ``` Would that...
That would parallel fairly reasonably with expectations people may have from similar behavior in other languages. Value types in scala are *usually* erased, for example, except in some cases. Similarly...
Well, "not at all" is definitely an exaggeration. The drawback to the wrapper class is that I either have to implement proxy methods for every single list interface or expose...
It's a feature I'd like to add. There might be a ticket for it... I only want to support it for cod decks. On the card node, we can add...
To select which printing to use in your own deck, right click the card in your decklist. Deck hash code should not consider printing at all; two decklists with the...
Is discarding from hand index-based? If you rearrange your hand then discard, the server might discard the wrong card if it's based on index and they're not kept synced On...