DIP 1000 and classes

Jonathan M Davis newsgroup.d at jmdavisprog.com
Thu Jan 3 11:36:49 UTC 2019


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 could have a container that
was scope, but you couldn't put anything that's scope inside of it.

- Jonathan M Davis






More information about the Digitalmars-d-learn mailing list