Make generics more focused #34
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Right now, subtract operates on any two objects, and uses the full implementation of negate and any. In keeping with the spirit of how add() and friends are currently implemented, perhaps it should operate on two objects of the same type, and rely on add and negate of specific signatures...
After some kicking around of possibilities, it seems to me the way to do this is with template operations, part of what's called for in #31.