Re: DIP 1000 and classes

2019-01-03 Thread Jonathan M Davis via Digitalmars-d-learn
On Thursday, January 3, 2019 3:28:35 AM MST Nordlöw via Digitalmars-d-learn wrote: > How does DIP 1000 treat the lifetime scoped class parameters and > containers of classes? scope isn't transitive, and putting an object inside a container would be escaping it, which would violate scope. So, you

DIP 1000 and classes

2019-01-03 Thread Nordlöw via Digitalmars-d-learn
How does DIP 1000 treat the lifetime scoped class parameters and containers of classes?