Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit f71d42e

Browse files
authored
Merge pull request #3863 from ntrel/new-aa
[rt/aaA] Add _aaNew function to initialize AA
2 parents 5e06492 + 3052ed2 commit f71d42e

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/rt/aaA.d

+14
Original file line numberDiff line numberDiff line change
@@ -485,6 +485,20 @@ pure nothrow @nogc unittest
485485
// API Implementation
486486
//------------------------------------------------------------------------------
487487

488+
/** Allocate associative array data.
489+
* Called for `new SomeAA` expression.
490+
* Params:
491+
* ti = TypeInfo for the associative array
492+
* Returns:
493+
* A new associative array.
494+
*/
495+
extern (C) AA _aaNew(const TypeInfo_AssociativeArray ti)
496+
{
497+
AA aa;
498+
aa.impl = new Impl(ti);
499+
return aa;
500+
}
501+
488502
/// Determine number of entries in associative array.
489503
extern (C) size_t _aaLen(scope const AA aa) pure nothrow @nogc
490504
{

0 commit comments

Comments
 (0)