On 10/21/2015 10:51 AM, Robert burner Schadek wrote:
On Wednesday, 21 October 2015 at 14:20:23 UTC, Andrei Alexandrescu wrote:Containers will obey subsets of a nomenclature of primitives.Just to be crystal clear, something like this? void fun(Container)(ref Container c) if (hasAppend!Container) { // append stuff to c }
Even simpler, hasMethod!(Container, "append") -- Andrei
