We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1d71cc commit 50fe233Copy full SHA for 50fe233
src/rt/aaA.d
@@ -485,6 +485,14 @@ pure nothrow @nogc unittest
485
// API Implementation
486
//------------------------------------------------------------------------------
487
488
+/// Allocate new AA implementation.
489
+extern (C) AA _aaNew(const TypeInfo_AssociativeArray ti)
490
+{
491
+ AA aa;
492
+ aa.impl = new Impl(ti);
493
+ return aa;
494
+}
495
+
496
/// Determine number of entries in associative array.
497
extern (C) size_t _aaLen(scope const AA aa) pure nothrow @nogc
498
{
0 commit comments