Handle.make

GC allocates a new Node and returns a Handle to it.

struct Handle(Bag)
static
make
(
BagArgs...
)
(
size_t id
,
BagArgs bagArgs
)
if (
is(Bag == shared) &&
is(Bag == struct)
)

Parameters

id size_t

Unique identifier for the given Bag

bagArgs BagArgs

Arguments to the Bag constructor.

Return Value

Type: Handle

A Handle to the created Node refering to the new Bag.

Meta