7 ms·
Love the idea, definitely will use. But wondering why it's using ">>". I'm not great with Python. How does this ">>" thing work and why does it make sense to a
by zander312 4y ago
Love the idea, definitely will use.
But wondering why it's using ">>". I'm not great with Python. How does this ">>" thing work and why does it make sense to associate elements with ">>".
- aidos 4y agoPython has dunder methods that allow you to override behaviour (eg operator overloading, hashing, object identity etc). In this case they’re overriding bitshifting. In terms of why, it does feel like a natural visual choice. https://github.com/mingrammer/diagrams/blob/master/diagrams/__init__.py#L346 https://github.com/mingrammer/diagrams/blob/master/diagrams/...
- AtlasBarfed 4y agooperator overloading. One of the great holy wars of PL. Of course C++ has it, and it is one of the great footguns in its arsenal.
- aidos 4y agoWith great power comes great responsibility.