Difference between revisions of "Stuff in Phobos That Generates Garbage"

From D Wiki
Jump to: navigation, search
(moar)
(Entered data from Dmitry, see http://forum.dlang.org/thread/m0bdgg$1t7j$1@digitalmars.com?page=12#post-m0n9pg:241832:241:40digitalmars.com)
Line 1: Line 1:
 +
 
{| class="wikitable"
 
{| class="wikitable"
 
! Module
 
! Module
 
! Artifact
 
! Artifact
 +
! Reason
 
! Possible Fix(es)
 
! Possible Fix(es)
|-
 
| <tt>std.algorithm</tt>
 
| <tt>Levenshtein</tt>
 
| Use reference counting in conjunction with <tt>GC.malloc</tt>/<tt>GC.free</tt>
 
|-
 
| <tt>std.array</tt>
 
| <tt>minimallyIntializedArray</tt>
 
| Pass in a memory management policy
 
|-
 
|
 
| <tt>unintializedArray</tt>
 
| Pass in a memory management policy
 
 
|-
 
|-
|std.string
 
|toStringz
 
| ??
 
 
|-
 
|-
|
+
|std.algorithm [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/algorithm.d#L10409]
|splitLines
+
|TimSortImpl.sort
| ??
+
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.algorithm [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/algorithm.d#L10600]
 +
|TimSortImpl.ensureCapacity
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.array [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/array.d#L1079]
 +
|insertInPlace
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.array [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/array.d#L2386]
 +
|Appender.arr
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.array [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/array.d#L2401]
 +
|Appender.arr
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.array [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/array.d#L2465]
 +
|Appender.ensureAddable
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.array [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/array.d#L2475]
 +
|Appender.ensureAddable
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.array [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/array.d#L2477]
 +
|Appender.ensureAddable
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.array [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/array.d#L34]
 +
|array
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.array [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/array.d#L419]
 +
|arrayAllocImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.array [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/array.d#L420]
 +
|arrayAllocImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.bigint [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/bigint.d#L478]
 +
|BigInt.toString
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.bigint [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/bigint.d#L478]
 +
|BigInt.toString
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.bigint [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/bigint.d#L561]
 +
|BigInt.checkDivByZero
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.bigint [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/bigint.d#L568]
 +
|toDecimalString
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.bigint [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/bigint.d#L576]
 +
|toHex
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.bitmanip [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/bitmanip.d#L1567]
 +
|BitArray.toString
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.bitmanip [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/bitmanip.d#L1567]
 +
|BitArray.toString
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.bitmanip [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/bitmanip.d#L1588]
 +
|BitArray.bitsSet
 +
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.bitmanip [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/bitmanip.d#L602]
 +
|BitArray.length
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.c.windows.winsock [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/c/windows/winsock.d#L413]
 +
|FD_CREATE
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.complex [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/complex.d#L128]
 +
|Complex.toString
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.complex [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/complex.d#L164]
 +
|Complex.toString
 +
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.complex [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/complex.d#L173]
 +
|Complex.toString
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.concurrency [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/concurrency.d#L1215]
 +
|ThreadScheduler.spawn
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.concurrency [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/concurrency.d#L1407]
 +
|FiberScheduler.create
 +
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.concurrency [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/concurrency.d#L1417]
 +
|FiberScheduler.create
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.concurrency [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/concurrency.d#L1417]
 +
|FiberScheduler.create
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.concurrency [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/concurrency.d#L1699]
 +
|unittest
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.concurrency [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/concurrency.d#L1704]
 +
|unittest
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.concurrency [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/concurrency.d#L1705]
 +
|unittest
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.concurrency [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/concurrency.d#L1866]
 +
|unittest
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.concurrency [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/concurrency.d#L1876]
 +
|unittest
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.concurrency [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/concurrency.d#L1955]
 +
|unittest
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.concurrency [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/concurrency.d#L2193]
 +
|unittest
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.concurrency [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/concurrency.d#L336]
 +
|thisTid
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.concurrency [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/concurrency.d#L864]
 +
|OnCrowding
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.concurrency [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/concurrency.d#L937]
 +
|static
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.concurrency [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/concurrency.d#L980]
 +
|register
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.concurrency [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/concurrency.d#L980]
 +
|register
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.concurrency [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/concurrency.d#L981]
 +
|register
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.conv [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/conv.d#L1300]
 +
|toImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.conv [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/conv.d#L1306]
 +
|toImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.conv [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/conv.d#L1906]
 +
|parse
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.conv [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/conv.d#L1960]
 +
|parse
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.conv [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/conv.d#L2205]
 +
|parse
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.conv [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/conv.d#L3563]
 +
|textImpl
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.conv [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/conv.d#L358]
 +
|toImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.conv [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/conv.d#L3691]
 +
|strippedOctalLiteral
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.cstream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/cstream.d#L131]
 +
|ulong
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.cstream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/cstream.d#L246]
 +
|din
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.cstream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/cstream.d#L247]
 +
|dout
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.cstream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/cstream.d#L248]
 +
|derr
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L11753]
 +
|Date.dayOfYear
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L1928]
 +
|SysTime.fracSecs
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L1929]
 +
|SysTime.fracSecs
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L2079]
 +
|SysTime.fracSec
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L26640]
 +
|LocalTime.string
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L26710]
 +
|LocalTime.string
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L27814]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L27815]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L27819]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L27820]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L27869]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L27875]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L27880]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L27887]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L27902]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L27908]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L27959]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L27965]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L27970]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L27977]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L27992]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L27998]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L28011]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L28025]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L28028]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L28039]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L28042]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L28056]
 +
|--------------------
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L28062]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L28105]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L28131]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L28132]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L28327]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L28355]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L28584]
 +
|--------------------
 +
|'delete' requires GC
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L28591]
 +
|--------------------
 +
|'delete' requires GC
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L28593]
 +
|--------------------
 +
|'delete' requires GC
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L28596]
 +
|--------------------
 +
|'delete' requires GC
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L28599]
 +
|--------------------
 +
|'delete' requires GC
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L28623]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L28630]
 +
|--------------------
 +
|'delete' requires GC
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L30244]
 +
|unittest
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L30302]
 +
|unittest
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L30346]
 +
|unittest
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L30377]
 +
|unittest
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L30431]
 +
|DosFileTimeToSysTime
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L30443]
 +
|DosFileTimeToSysTime
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L30474]
 +
|SysTimeToDosFileTime
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L30477]
 +
|SysTimeToDosFileTime
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L31441]
 +
|enforceValid
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L31446]
 +
|enforceValid
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L31451]
 +
|enforceValid
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L31456]
 +
|enforceValid
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L31479]
 +
|enforceValid
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L32164]
 +
|monthFromString
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L577]
 +
|SysTime.DateTime
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L578]
 +
|SysTime.DateTime
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L635]
 +
|SysTime.DateTime
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L9232]
 +
|Date.yearBC
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.datetime [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/datetime.d#L9269]
 +
|Date.yearBC
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.digest.digest [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/digest/digest.d#L726]
 +
|ubyte
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.digest.digest [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/digest/digest.d#L898]
 +
|WrapperDigest.:
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.digest.digest [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/digest/digest.d#L933]
 +
|WrapperDigest.:
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.encoding [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/encoding.d#L2023]
 +
|transcode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.encoding [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/encoding.d#L2032]
 +
|transcode
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.encoding [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/encoding.d#L2149]
 +
|EncodingScheme.register
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.encoding [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/encoding.d#L2149]
 +
|EncodingScheme.register
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.encoding [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/encoding.d#L2152]
 +
|EncodingScheme.register
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.encoding [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/encoding.d#L2172]
 +
|EncodingScheme.create
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.encoding [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/encoding.d#L2172]
 +
|EncodingScheme.create
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.encoding [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/encoding.d#L2175]
 +
|EncodingScheme.create
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.encoding [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/encoding.d#L2175]
 +
|EncodingScheme.create
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.encoding [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/encoding.d#L2335]
 +
|EncodingScheme.sanitize
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.encoding [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/encoding.d#L389]
 +
|EncoderFunctions.WriteToString()
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.exception [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/exception.d#L1406]
 +
|ErrnoException.msg
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.exception [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/exception.d#L374]
 +
|bailOut
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.exception [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/exception.d#L534]
 +
|errnoEnforce
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.exception [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/exception.d#L560]
 +
|enforceEx.enforceEx
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.file [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/file.d#L1499]
 +
|mkdir
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.file [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/file.d#L1525]
 +
|ensureDirExists
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.file [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/file.d#L158]
 +
|cenforce
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.file [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/file.d#L1839]
 +
|thisExePath
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.file [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/file.d#L2052]
 +
|--------------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.file [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/file.d#L238]
 +
|read
 +
|'delete' requires GC
 +
| ???
 +
|-
 +
|-
 +
|std.file [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/file.d#L2427]
 +
|copy
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.file [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/file.d#L2517]
 +
|rmdirRecurse
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.file [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/file.d#L2979]
 +
|dirEntries
 +
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.file [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/file.d#L471]
 +
|rename
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.file [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/file.d#L510]
 +
|remove
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.format [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/format.d#L1044]
 +
|FormatSpec.fillUp
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.format [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/format.d#L2297]
 +
|formatRange
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.format [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/format.d#L3218]
 +
|formatNth
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.format [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/format.d#L3219]
 +
|formatNth
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.format [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/format.d#L3264]
 +
|getNthInt
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.format [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/format.d#L3269]
 +
|getNthInt
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.format [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/format.d#L4690]
 +
|primitiveTypeInfo
 +
|associative array literal may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.format [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/format.d#L5086]
 +
|doFormat
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.format [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/format.d#L5351]
 +
|doFormat
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.format [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/format.d#L5504]
 +
|doFormat
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.format [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/format.d#L5541]
 +
|doFormat
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.format [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/format.d#L5541]
 +
|doFormat
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.format [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/format.d#L5716]
 +
|doFormat
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.format [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/format.d#L5801]
 +
|doFormat
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.format [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/format.d#L5812]
 +
|doFormat
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.format [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/format.d#L5825]
 +
|doFormat
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.format [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/format.d#L5829]
 +
|doFormat
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.format [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/format.d#L5931]
 +
|doFormat
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.format [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/format.d#L923]
 +
|FormatSpec.fillUp
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.functional [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/functional.d#L772]
 +
|memoize.memoize
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.getopt [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/getopt.d#L514]
 +
|Option
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.getopt [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/getopt.d#L516]
 +
|Option
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.getopt [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/getopt.d#L521]
 +
|Option
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.digest.sha_SSSE3 [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/digest/sha_SSSE3.d#L148]
 +
|computed
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.digest.sha_SSSE3 [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/digest/sha_SSSE3.d#L203]
 +
|computed
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.digest.sha_SSSE3 [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/digest/sha_SSSE3.d#L203]
 +
|computed
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.digest.sha_SSSE3 [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/digest/sha_SSSE3.d#L204]
 +
|computed
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.digest.sha_SSSE3 [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/digest/sha_SSSE3.d#L223]
 +
|computed
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.digest.sha_SSSE3 [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/digest/sha_SSSE3.d#L228]
 +
|computed
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.digest.sha_SSSE3 [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/digest/sha_SSSE3.d#L329]
 +
|computed
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.digest.sha_SSSE3 [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/digest/sha_SSSE3.d#L336]
 +
|computed
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.digest.sha_SSSE3 [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/digest/sha_SSSE3.d#L378]
 +
|computed
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.digest.sha_SSSE3 [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/digest/sha_SSSE3.d#L379]
 +
|computed
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.digest.sha_SSSE3 [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/digest/sha_SSSE3.d#L380]
 +
|computed
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.digest.sha_SSSE3 [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/digest/sha_SSSE3.d#L381]
 +
|computed
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.digest.sha_SSSE3 [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/digest/sha_SSSE3.d#L382]
 +
|computed
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.digest.sha_SSSE3 [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/digest/sha_SSSE3.d#L434]
 +
|computed
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.digest.sha_SSSE3 [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/digest/sha_SSSE3.d#L435]
 +
|computed
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.digest.sha_SSSE3 [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/digest/sha_SSSE3.d#L436]
 +
|computed
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.digest.sha_SSSE3 [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/digest/sha_SSSE3.d#L437]
 +
|computed
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.digest.sha_SSSE3 [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/digest/sha_SSSE3.d#L447]
 +
|computed
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.digest.sha_SSSE3 [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/digest/sha_SSSE3.d#L448]
 +
|computed
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L1020]
 +
|nothrow
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L1133]
 +
|nothrow
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L1166]
 +
|nothrow
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L1195]
 +
|BigDigit
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L1220]
 +
|BigDigit
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L1241]
 +
|BigDigit
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L1347]
 +
|mulInternal
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L1376]
 +
|mulInternal
 +
|'delete' requires GC
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L1381]
 +
|mulInternal
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L1383]
 +
|mulInternal
 +
|'delete' requires GC
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L1406]
 +
|BigDigit
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L1408]
 +
|scratchbuff
 +
|'delete' requires GC
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L1427]
 +
|divModInternal
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L1428]
 +
|divModInternal
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L1457]
 +
|divModInternal
 +
|'delete' requires GC
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L1458]
 +
|divModInternal
 +
|'delete' requires GC
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L1525]
 +
|biguintToDecimal
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L1580]
 +
|the
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L165]
 +
|BigUint.opAssign
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L166]
 +
|BigUint.opAssign
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L167]
 +
|BigUint.opAssign
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L168]
 +
|BigUint.opAssign
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L177]
 +
|BigUint.opAssign
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L181]
 +
|BigUint.opAssign
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L2299]
 +
|nothrow
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L2322]
 +
|nothrow
 +
|'delete' requires GC
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L265]
 +
|BigUint.char
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L291]
 +
|BigUint.char
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L350]
 +
|BigUint.fromHexString
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L382]
 +
|BigUint.fromHexString
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L399]
 +
|BigUint.fromDecimalString
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L403]
 +
|BigUint.fromDecimalString
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L406]
 +
|BigUint.fromDecimalString
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L444]
 +
|BigUint.opShl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L558]
 +
|BigUint.mul
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L580]
 +
|BigUint.divInt
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L627]
 +
|BigUint.modInt
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L630]
 +
|BigUint.modInt
 +
|'delete' requires GC
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L642]
 +
|BigUint.div
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L655]
 +
|BigUint.mod
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L656]
 +
|BigUint.mod
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L791]
 +
|BigUint.pow
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.math.biguintcore [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/math/biguintcore.d#L818]
 +
|BigUint.pow
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.windows.advapi32 [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/windows/advapi32.d#L44]
 +
|loadAdvapi32
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.windows.advapi32 [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/windows/advapi32.d#L48]
 +
|loadAdvapi32
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.internal.windows.advapi32 [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/internal/windows/advapi32.d#L58]
 +
|freeAdvapi32
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.json [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/json.d#L350]
 +
|JSONValue.inout
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.json [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/json.d#L788]
 +
|toJSON
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.json [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/json.d#L830]
 +
|toJSON
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.net.curl [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/net/curl.d#L1172]
 +
|template
 +
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.net.curl [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/net/curl.d#L1221]
 +
|template
 +
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.net.curl [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/net/curl.d#L1433]
 +
|AsyncChunkInputRange
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.net.curl [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/net/curl.d#L2089]
 +
|HTTP.Impl
 +
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.net.curl [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/net/curl.d#L2141]
 +
|HTTP.Impl
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.net.curl [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/net/curl.d#L2265]
 +
|HTTP.url
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.net.curl [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/net/curl.d#L2932]
 +
|FTP.url
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.net.curl [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/net/curl.d#L3181]
 +
|SMTP.Impl
 +
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.net.curl [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/net/curl.d#L3782]
 +
|Curl.onReceive
 +
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.net.curl [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/net/curl.d#L3813]
 +
|Curl.onReceiveHeader
 +
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.net.curl [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/net/curl.d#L3860]
 +
|Curl.onSend
 +
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.net.curl [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/net/curl.d#L3896]
 +
|Curl.onSeek
 +
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.net.curl [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/net/curl.d#L3930]
 +
|Curl.onSocketOption
 +
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.net.curl [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/net/curl.d#L3970]
 +
|Curl.onProgress
 +
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.net.curl [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/net/curl.d#L4095]
 +
|Pool.void
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.net.curl [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/net/curl.d#L4118]
 +
|_receiveAsyncChunks
 +
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.net.curl [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/net/curl.d#L4173]
 +
|_finalizeAsyncChunks
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.numeric [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/numeric.d#L2673]
 +
|Fft.memSpace
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.outbuffer [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/outbuffer.d#L84]
 +
|OutBuffer.reserve
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.parallelism [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/parallelism.d#L1206]
 +
|TaskPool.abstractPutNoSync
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.parallelism [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/parallelism.d#L1232]
 +
|TaskPool.abstractPutGroupNoSync
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.parallelism [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/parallelism.d#L1388]
 +
|TaskPool.task
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.parallelism [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/parallelism.d#L1445]
 +
|TaskPool.nWorkers
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.parallelism [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/parallelism.d#L1446]
 +
|TaskPool.nWorkers
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.parallelism [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/parallelism.d#L1447]
 +
|TaskPool.nWorkers
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.parallelism [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/parallelism.d#L1448]
 +
|TaskPool.nWorkers
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.parallelism [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/parallelism.d#L1450]
 +
|TaskPool.nWorkers
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.parallelism [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/parallelism.d#L1453]
 +
|TaskPool.nWorkers
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.parallelism [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/parallelism.d#L3278]
 +
|taskPool
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.parallelism [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/parallelism.d#L3386]
 +
|)
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.parallelism [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/parallelism.d#L3467]
 +
|foreachErr
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.parallelism [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/parallelism.d#L742]
 +
|Task.executeInNewThread
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.parallelism [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/parallelism.d#L748]
 +
|Task.executeInNewThread
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.path [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/path.d#L1190]
 +
|buildNormalizedPath
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.path [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/path.d#L1234]
 +
|buildNormalizedPath
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.path [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/path.d#L1995]
 +
|absolutePath
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.path [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/path.d#L2473]
 +
|globMatch
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.path [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/path.d#L992]
 +
|immutable(ElementEncodingType!(ElementType!Range))[]
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L1412]
 +
|kill
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L1416]
 +
|kill
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L1521]
 +
|pipe
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L1522]
 +
|pipe
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L1541]
 +
|pipe
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L1541]
 +
|pipe
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L1714]
 +
|pipeProcessImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L1728]
 +
|pipeProcessImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L1895]
 +
|ProcessPipes.stdin
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L1911]
 +
|ProcessPipes.stdout
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L1927]
 +
|ProcessPipes.stderr
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L2134]
 +
|ProcessException.newFromErrno
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L2146]
 +
|ProcessException.newFromLastError
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L2300]
 +
|escapeShellCommand
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L2300]
 +
|escapeShellCommand
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L2371]
 +
|escapeWindowsShellCommand
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L2374]
 +
|escapeWindowsShellCommand
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L2401]
 +
|escapeShellArguments
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L2405]
 +
|escapeShellArguments
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L2779]
 +
|environment.opIndex
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L2929]
 +
|environment.toAA
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L2959]
 +
|environment.getImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L3480]
 +
|shell
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L506]
 +
|spawnProcessImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L536]
 +
|spawnProcessImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L537]
 +
|spawnProcessImpl
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.process [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/process.d#L941]
 +
|spawnShell
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.random [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/random.d#L625]
 +
|----------------
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.range [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/range.d#L3009]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.range [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/range.d#L3009]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.range [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/range.d#L3009]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.range [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/range.d#L3009]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.range [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/range.d#L3012]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.range [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/range.d#L3026]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.range [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/range.d#L3026]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.range [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/range.d#L3026]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.range [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/range.d#L3026]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.range [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/range.d#L3028]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.range [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/range.d#L3040]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.range [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/range.d#L3040]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.range [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/range.d#L3040]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.range [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/range.d#L3040]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.range [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/range.d#L3040]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.range [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/range.d#L3045]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.range [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/range.d#L4287]
 +
|Repeat.opSlice
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.range [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/range.d#L686]
 +
|put
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1018]
 +
|CtContext.ctGenFixupCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1025]
 +
|CtContext.ctGenFixupCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1047]
 +
|CtContext.ctGenFixupCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1068]
 +
|CtContext.ctGenFixupCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1078]
 +
|CtContext.ctGenFixupCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1088]
 +
|CtContext.ctGenFixupCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1099]
 +
|CtContext.ctGenFixupCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1107]
 +
|CtContext.ctGenFixupCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1120]
 +
|CtContext.ctGenFixupCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1188]
 +
|CtContext.ctAtomCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1195]
 +
|CtContext.ctAtomCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1201]
 +
|CtContext.ctAtomCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1208]
 +
|CtContext.ctAtomCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1212]
 +
|CtContext.ctAtomCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1219]
 +
|CtContext.ctAtomCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1227]
 +
|CtContext.ctAtomCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1234]
 +
|CtContext.ctAtomCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1241]
 +
|CtContext.ctAtomCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1265]
 +
|CtContext.ctAtomCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1285]
 +
|CtContext.ctAtomCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1300]
 +
|CtContext.ctAtomCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1317]
 +
|CtContext.ctAtomCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1323]
 +
|CtContext.ctAtomCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1329]
 +
|CtContext.ctAtomCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1334]
 +
|CtContext.ctAtomCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1367]
 +
|CtContext.ctGenRegEx
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1387]
 +
|CtContext.ctGenRegEx
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1388]
 +
|CtContext.ctGenRegEx
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L1390]
 +
|CtContext.ctGenRegEx
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L789]
 +
|CtContext.restoreCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L796]
 +
|CtContext.restoreCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L802]
 +
|CtContext.restoreCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L804]
 +
|CtContext.restoreCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L808]
 +
|CtContext.restoreCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L823]
 +
|CtContext.saveCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L826]
 +
|CtContext.saveCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L830]
 +
|CtContext.saveCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L834]
 +
|CtContext.saveCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L836]
 +
|CtContext.saveCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L849]
 +
|CtContext.ctGenBlock
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L884]
 +
|CtContext.ctGenGroup
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L885]
 +
|CtContext.ctGenGroup
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L912]
 +
|CtContext.ctGenGroup
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L978]
 +
|CtContext.ctGenAlternation
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L980]
 +
|CtContext.ctGenAlternation
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L985]
 +
|CtContext.ctGenAlternation
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L993]
 +
|CtContext.ctGenAlternation
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.backtracking [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/backtracking.d#L996]
 +
|CtContext.ctGenAlternation
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.ir [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/ir.d#L400]
 +
|disassemble
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.ir [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/ir.d#L403]
 +
|disassemble
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.kickstart [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/kickstart.d#L117]
 +
|ShiftOr.fetch
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.kickstart [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/kickstart.d#L202]
 +
|ShiftOr.Regex
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.kickstart [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/kickstart.d#L227]
 +
|ShiftOr.Regex
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.kickstart [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/kickstart.d#L259]
 +
|ShiftOr.Regex
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.kickstart [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/kickstart.d#L284]
 +
|ShiftOr.Regex
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.kickstart [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/kickstart.d#L305]
 +
|ShiftOr.Regex
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.kickstart [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/kickstart.d#L326]
 +
|ShiftOr.Regex
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.parser [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/parser.d#L1283]
 +
|Parser.charsetToIr
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.parser [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/parser.d#L1289]
 +
|Parser.charsetToIr
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.parser [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/parser.d#L1291]
 +
|Parser.charsetToIr
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.parser [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/parser.d#L1423]
 +
|Parser.error
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.parser [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/parser.d#L1452]
 +
|lightPostprocess
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.parser [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/parser.d#L1500]
 +
|lightPostprocess
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.parser [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/parser.d#L178]
 +
|parseUniHex
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.parser [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/parser.d#L263]
 +
|Stack.push
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.parser [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/parser.d#L335]
 +
|Parser.markBackref
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.parser [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/parser.d#L382]
 +
|Parser.put
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.parser [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/parser.d#L389]
 +
|Parser.putRaw
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.parser [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/parser.d#L430]
 +
|Parser.parseFlags
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.parser [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/parser.d#L435]
 +
|Parser.parseFlags
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.parser [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/parser.d#L483]
 +
|Parser.parseRegex
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.parser [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/parser.d#L487]
 +
|Parser.parseRegex
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.parser [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/parser.d#L679]
 +
|Parser.parseQuantifier
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.parser [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/parser.d#L728]
 +
|Parser.parseQuantifier
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.parser [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/parser.d#L732]
 +
|Parser.parseQuantifier
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.parser [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/parser.d#L79]
 +
|reverseBytecode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.thompson [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/thompson.d#L677]
 +
|ThompsonMatcher.eval
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.internal.thompson [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/internal/thompson.d#L704]
 +
|ThompsonMatcher.eval
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.regex.package [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/regex/package.d#L415]
 +
|Captures.newMatches
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L1034]
 +
|getAddressInfoImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L1045]
 +
|getAddressInfoImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L1052]
 +
|getAddressInfoImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L1100]
 +
|serviceToPort
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L1135]
 +
|getAddress
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L1152]
 +
|getAddress
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L1154]
 +
|getAddress
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L1159]
 +
|getAddress
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L1159]
 +
|getAddress
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L1239]
 +
|parseAddress
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L1346]
 +
|Address.toHostString
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L1362]
 +
|Address.toHostString
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L1362]
 +
|Address.toHostString
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L1367]
 +
|Address.toHostString
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L1367]
 +
|Address.toHostString
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L1377]
 +
|Address.toServiceString
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L1383]
 +
|Address.toServiceString
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L1383]
 +
|Address.toServiceString
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L1388]
 +
|Address.toServiceString
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L1388]
 +
|Address.toServiceString
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L1597]
 +
|InternetAddress.char
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L1600]
 +
|InternetAddress.char
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L1664]
 +
|InternetAddress.string
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L1874]
 +
|Internet6Address.parse
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L2110]
 +
|SocketSet.SocketSet
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L2217]
 +
|SocketSet.add
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L2218]
 +
|SocketSet.add
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L256]
 +
|SocketOSException.msg
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L2592]
 +
|Socket.af
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L2612]
 +
|Socket.af
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L2691]
 +
|Socket.blocking
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L2713]
 +
|Socket.bind
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L2745]
 +
|Socket.connect
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L2757]
 +
|Socket.listen
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L2783]
 +
|Socket.accept
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L2846]
 +
|Socket.hostName
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L2856]
 +
|Socket.remoteAddress
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L2858]
 +
|Socket.remoteAddress
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L2869]
 +
|Socket.localAddress
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L2871]
 +
|Socket.localAddress
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L3058]
 +
|Socket.receiveFrom
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L3081]
 +
|Socket.getOption
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L3081]
 +
|Socket.getOption
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L3106]
 +
|Socket.setOption
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L3168]
 +
|Socket.setOption
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L3168]
 +
|Socket.setOption
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L3170]
 +
|Socket.setOption
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L3224]
 +
|Socket.setKeepAlive
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L3362]
 +
|Socket.select
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L3386]
 +
|Socket.Address
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L3390]
 +
|Socket.Address
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L3394]
 +
|Socket.Address
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L3489]
 +
|socketPair
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L349]
 +
|static
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L3491]
 +
|socketPair
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L3495]
 +
|socketPair
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L484]
 +
|Protocol.populate
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L584]
 +
|Service.populate
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L723]
 +
|InternetHost.validHostent
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L743]
 +
|InternetHost.populate
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socket [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socket.d#L764]
 +
|InternetHost.populate
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.socketstream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/socketstream.d#L128]
 +
|****
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stdio [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stdio.d#L1017]
 +
|)
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stdio [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stdio.d#L1055]
 +
|file
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stdio [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stdio.d#L1079]
 +
|the
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stdio [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stdio.d#L2064]
 +
|file
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stdio [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stdio.d#L3633]
 +
|with
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stdio [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stdio.d#L3639]
 +
|with
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stdio [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stdio.d#L3645]
 +
|with
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stdio [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stdio.d#L641]
 +
|to
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stdio [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stdio.d#L809]
 +
|the
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stdio [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stdio.d#L872]
 +
|file
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stdio [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stdio.d#L917]
 +
|file
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stdio [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stdio.d#L934]
 +
|for
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stdio [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stdio.d#L963]
 +
|for
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stdio [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stdio.d#L963]
 +
|for
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stdio [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stdio.d#L963]
 +
|for
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stdio [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stdio.d#L963]
 +
|for
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L1001]
 +
|ungetcw
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L1011]
 +
|ungetcw
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L1094]
 +
|writeExact
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L1341]
 +
|flush
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L1370]
 +
|string
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L1378]
 +
|string
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L1382]
 +
|string
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L1433]
 +
|void
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L1438]
 +
|void
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L1443]
 +
|void
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L1640]
 +
|source
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L1805]
 +
|TreadLine(T)
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L1852]
 +
|void
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L2004]
 +
|open
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L2004]
 +
|open
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L2121]
 +
|ulong
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L2238]
 +
|this()
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L2243]
 +
|filename
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L2253]
 +
|hFile
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L2508]
 +
|wchar
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L2513]
 +
|wchar
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L2520]
 +
|wchar
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L2727]
 +
|data
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L2785]
 +
|reserve
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L2864]
 +
|void
 +
|'delete' requires GC
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L428]
 +
|readExact
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L498]
 +
|readLine
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L505]
 +
|readLine
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L511]
 +
|readLine
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L541]
 +
|readLineW
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L548]
 +
|readLineW
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L554]
 +
|readLineW
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L613]
 +
|readString
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L621]
 +
|readStringW
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L643]
 +
|getc
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L663]
 +
|getcw
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L668]
 +
|getcw
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L679]
 +
|ungetc
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L680]
 +
|ungetc
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L690]
 +
|ungetcw
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.stream [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/stream.d#L691]
 +
|ungetcw
 +
|operator ~= may cause GC allocation
 +
| ???
 
|-
 
|-
|
 
|leftJustify
 
| ??
 
 
|-
 
|-
|
+
|std.string [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/string.d#L2436]
 
|rightJustify
 
|rightJustify
| ??
+
|'new' causes GC allocation
 +
| ???
 
|-
 
|-
|
 
|center
 
| ??
 
 
|-
 
|-
|
+
|std.string [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/string.d#L2447]
|detab
+
|rightJustify
| ??
+
|'new' causes GC allocation
 +
| ???
 
|-
 
|-
|
 
|entab
 
| ??
 
 
|-
 
|-
|
+
|std.string [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/string.d#L256]
|translate
+
|toStringz
| ??
+
|'new' causes GC allocation
 +
| ???
 
|-
 
|-
|
+
|-
 +
|std.string [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/string.d#L3070]
 +
|makeTrans
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.string [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/string.d#L3222]
 
|format
 
|format
| ??
+
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.string [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/string.d#L3274]
 +
|sformat
 +
|using closure causes GC allocation
 +
| ???
 +
|-
 
|-
 
|-
|
+
|std.string [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/string.d#L3315]
 
|sformat
 
|sformat
| ??
+
|'new' causes GC allocation
 +
| ???
 
|-
 
|-
|
 
|removechars
 
| ??
 
 
|-
 
|-
|
+
|std.string [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/string.d#L4237]
|squeeze
+
|soundex
| ??
+
|'new' causes GC allocation
 +
| ???
 
|-
 
|-
|
 
|succ
 
| ??
 
 
|-
 
|-
|
+
|std.string [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/string.d#L4383]
|tr
+
|abbrev
| ??
+
|indexing an associative array may cause GC allocation
 +
| ???
 
|-
 
|-
|
 
|soundex
 
| ??
 
 
|-
 
|-
|
+
|std.string [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/string.d#L4386]
 
|abbrev
 
|abbrev
| ??
+
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.syserror [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/syserror.d#L41]
 +
|SysError.msg
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.traits [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/traits.d#L222]
 +
|std
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.traits [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/traits.d#L222]
 +
|std
 +
|associative array literal may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.typecons [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/typecons.d#L2202]
 +
|NotImplementedError.method
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.typecons [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/typecons.d#L405]
 +
|Tuple.injectNamedFields
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.typecons [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/typecons.d#L408]
 +
|Tuple.injectNamedFields
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L1542]
 +
|genUnrolledSwitchSearch
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L1551]
 +
|genUnrolledSwitchSearch
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L1557]
 +
|genUnrolledSwitchSearch
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L1714]
 +
|GcPolicy.realloc
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L1726]
 +
|GcPolicy.append
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L1989]
 +
|InversionList.set
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L1990]
 +
|InversionList.set
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L2489]
 +
|InversionList.inverted
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L2494]
 +
|InversionList.inverted
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L2550]
 +
|InversionList.toSourceCode
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L2551]
 +
|InversionList.toSourceCode
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L2558]
 +
|InversionList.toSourceCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L2562]
 +
|InversionList.toSourceCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L2568]
 +
|InversionList.toSourceCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L2569]
 +
|InversionList.toSourceCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L2572]
 +
|InversionList.toSourceCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L2610]
 +
|InversionList.toSourceCode
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L2612]
 +
|InversionList.toSourceCode
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L2614]
 +
|InversionList.toSourceCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L2617]
 +
|InversionList.toSourceCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L2620]
 +
|InversionList.toSourceCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L2622]
 +
|InversionList.toSourceCode
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L2631]
 +
|InversionList.toSourceCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L2633]
 +
|InversionList.toSourceCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L2936]
 +
|InversionList.dropUpTo
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L2973]
 +
|InversionList.skipUpTo
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L5728]
 +
|compressTo
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L5731]
 +
|compressTo
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L5732]
 +
|compressTo
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L5737]
 +
|compressTo
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L5738]
 +
|compressTo
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L5739]
 +
|compressTo
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L5979]
 +
|isPrettyPropertyName
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L6188]
 +
|unicode.loadAny
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L6188]
 +
|unicode.loadAny
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L6188]
 +
|unicode.loadAny
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L8154]
 +
|encodeTo
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L8302]
 +
|toCaseInPlaceAlloc.toCaseInPlaceAlloc
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L851]
 +
|MultiArray.sizes
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L885]
 +
|MultiArray.n
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uni [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uni.d#L918]
 +
|MultiArray.n
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uri [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uri.d#L120]
 +
|URI_Encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uri [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uri.d#L126]
 +
|URI_Encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uri [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uri.d#L191]
 +
|URI_Encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uri [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uri.d#L200]
 +
|URI_Encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uri [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uri.d#L206]
 +
|URI_Encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uri [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uri.d#L50]
 +
|URIException.nothrow
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L1115]
 +
|decodeImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L1230]
 +
|decodeImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L1284]
 +
|decodeImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L1576]
 +
|encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L1595]
 +
|encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L1631]
 +
|encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L1646]
 +
|encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L1685]
 +
|encode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L1702]
 +
|encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L1722]
 +
|encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L1724]
 +
|encode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L1785]
 +
|encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L1788]
 +
|encode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L1797]
 +
|encode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L1802]
 +
|encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L1834]
 +
|encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L1837]
 +
|encode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L199]
 +
|strideImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L2096]
 +
|toUTF8
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L2105]
 +
|toUTF8
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L2122]
 +
|toUTF8
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L2131]
 +
|toUTF8
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L2174]
 +
|toUTF16
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L2175]
 +
|toUTF16
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L2182]
 +
|toUTF16
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L2207]
 +
|wstring
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L2208]
 +
|wstring
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L2229]
 +
|toUTF32
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L2250]
 +
|toUTF32
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L316]
 +
|strideBack
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L71]
 +
|UTFException.msg
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L84]
 +
|UTFException.string
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L842]
 +
|toUCSindex
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L88]
 +
|UTFException.string
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.utf [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/utf.d#L89]
 +
|UTFException.string
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uuid [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uuid.d#L335]
 +
|++/
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uuid [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uuid.d#L340]
 +
|++/
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uuid [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uuid.d#L353]
 +
|++/
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uuid [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uuid.d#L371]
 +
|++/
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.uuid [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/uuid.d#L382]
 +
|++/
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.variant [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/variant.d#L1416]
 +
|VariantException
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.variant [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/variant.d#L236]
 +
|VariantN.handler
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.variant [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/variant.d#L456]
 +
|VariantN.handler
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.variant [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/variant.d#L477]
 +
|VariantN.handler
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.variant [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/variant.d#L489]
 +
|VariantN.handler
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.variant [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/variant.d#L489]
 +
|VariantN.handler
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.variant [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/variant.d#L494]
 +
|VariantN.handler
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.variant [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/variant.d#L500]
 +
|VariantN.handler
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.variant [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/variant.d#L510]
 +
|VariantN.handler
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.variant [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/variant.d#L791]
 +
|VariantN.get
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.variant [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/variant.d#L916]
 +
|VariantN.value
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.charset [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/charset.d#L100]
 +
|fromMBSz
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.charset [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/charset.d#L110]
 +
|fromMBSz
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.charset [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/charset.d#L110]
 +
|fromMBSz
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.charset [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/charset.d#L54]
 +
|toMBSz
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.charset [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/charset.d#L65]
 +
|toMBSz
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.charset [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/charset.d#L65]
 +
|toMBSz
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L1103]
 +
|Key.setValue
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L1237]
 +
|Value.value_EXPAND_SZ
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L338]
 +
|regCreateKey
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L361]
 +
|regDeleteKey
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L373]
 +
|regDeleteValue
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L444]
 +
|regEnumKeyName
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L465]
 +
|regEnumValueName
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L502]
 +
|regGetValueType
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L517]
 +
|regOpenKey
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L547]
 +
|regQueryValue
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L554]
 +
|regQueryValue
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L563]
 +
|regQueryValue
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L589]
 +
|regQueryValue
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L603]
 +
|regQueryValue
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L608]
 +
|regQueryValue
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L61]
 +
|import
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L613]
 +
|regQueryValue
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L617]
 +
|regQueryValue
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L619]
 +
|regQueryValue
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L623]
 +
|regQueryValue
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L625]
 +
|regQueryValue
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L628]
 +
|regQueryValue
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L650]
 +
|regQueryValue
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L669]
 +
|regQueryValue
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L686]
 +
|regQueryValue
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L694]
 +
|regQueryValue
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L707]
 +
|regQueryValue
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L714]
 +
|regQueryValue
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L719]
 +
|regQueryValue
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L724]
 +
|regQueryValue
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L729]
 +
|regQueryValue
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L741]
 +
|regSetValue
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L752]
 +
|regProcessNthKey
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L774]
 +
|regProcessNthValue
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L901]
 +
|Key.createKey
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L914]
 +
|Key.createKey
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L955]
 +
|Key.getKey
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.registry [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/registry.d#L976]
 +
|Key.deleteKey
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.syserror [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/syserror.d#L80]
 +
|sysErrorString
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.windows.syserror [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/windows/syserror.d#L81]
 +
|sysErrorString
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L1055]
 +
|Tag.string
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L1059]
 +
|Tag.string
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L1067]
 +
|Tag.string
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L1071]
 +
|Tag.string
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L1075]
 +
|Tag.string
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L1079]
 +
|Tag.string
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L1080]
 +
|Tag.string
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L1158]
 +
|Tag.const
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L1160]
 +
|Tag.const
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L1228]
 +
|Comment.content
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L1307]
 +
|CData.content
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L1466]
 +
|XMLInstruction.content
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L1545]
 +
|ProcessingInstruction.content
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L1957]
 +
|ElementParser.parse
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L1991]
 +
|ElementParser.parse
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L1997]
 +
|ElementParser.parse
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L1999]
 +
|ElementParser.parse
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L2011]
 +
|ElementParser.parse
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L2019]
 +
|ElementParser.parse
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L2020]
 +
|ElementParser.parse
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L2034]
 +
|ElementParser.parse
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L2039]
 +
|ElementParser.parse
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L2044]
 +
|ElementParser.parse
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L2054]
 +
|ElementParser.parse
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L2095]
 +
|ElementParser.msg
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L2101]
 +
|ElementParser.msg
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L2106]
 +
|ElementParser.msg
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L2197]
 +
|ElementParser.checkAttValue
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L2378]
 +
|ElementParser.checkElement
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L2560]
 +
|ElementParser.checkLiteral
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L2569]
 +
|ElementParser.checkEnd
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L2569]
 +
|ElementParser.checkEnd
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L2637]
 +
|check
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L2817]
 +
|CheckException.const
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L2818]
 +
|CheckException.const
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L2819]
 +
|CheckException.const
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L2835]
 +
|Err
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L2858]
 +
|Err
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L2963]
 +
|Err
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L2964]
 +
|Err
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L2971]
 +
|Err
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L454]
 +
|decode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L470]
 +
|decode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L476]
 +
|decode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L477]
 +
|decode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L480]
 +
|decode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L481]
 +
|decode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L482]
 +
|decode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L483]
 +
|decode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L484]
 +
|decode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L488]
 +
|decode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L489]
 +
|decode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L569]
 +
|Document.s
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L688]
 +
|Element.name
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L689]
 +
|Element.name
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L700]
 +
|Element.tag_
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L702]
 +
|Element.tag_
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L720]
 +
|Element.opCatAssign
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L738]
 +
|Element.opCatAssign
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L756]
 +
|Element.opCatAssign
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L774]
 +
|Element.opCatAssign
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L794]
 +
|Element.opCatAssign
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L800]
 +
|Element.appendItem
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L805]
 +
|Element.parse
 +
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L807]
 +
|Element.parse
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L808]
 +
|Element.parse
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L809]
 +
|Element.parse
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L810]
 +
|Element.parse
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L812]
 +
|Element.parse
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L814]
 +
|Element.parse
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L901]
 +
|Element.const
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L902]
 +
|Element.const
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L928]
 +
|Element.const
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L934]
 +
|Element.const
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L937]
 +
|Element.const
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L955]
 +
|Element.const
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.xml [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/xml.d#L956]
 +
|Element.const
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zip [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zip.d#L127]
 +
|ArchiveMember.expandedData
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zip [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zip.d#L231]
 +
|ArchiveMember.compressionMethod
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zip [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zip.d#L324]
 +
|ZipArchive.addMember
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zip [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zip.d#L349]
 +
|ZipArchive.build
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zip [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zip.d#L370]
 +
|ZipArchive.build
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zip [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zip.d#L386]
 +
|ZipArchive.build
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zip [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zip.d#L50]
 +
|ZipException.msg
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zip [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zip.d#L500]
 +
|ZipArchive.buffer
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zip [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zip.d#L521]
 +
|ZipArchive.buffer
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zip [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zip.d#L527]
 +
|ZipArchive.buffer
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zip [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zip.d#L546]
 +
|ZipArchive.buffer
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zip [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zip.d#L547]
 +
|ZipArchive.buffer
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zip [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zip.d#L566]
 +
|ZipArchive.buffer
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zip [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zip.d#L577]
 +
|ZipArchive.buffer
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zip [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zip.d#L580]
 +
|ZipArchive.buffer
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zip [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zip.d#L584]
 +
|ZipArchive.buffer
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zip [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zip.d#L599]
 +
|ZipArchive.expand
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zip [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zip.d#L621]
 +
|ZipArchive.expand
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zip [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zip.d#L626]
 +
|ZipArchive.expand
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zip [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zip.d#L645]
 +
|ZipArchive.expand
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L133]
 +
|compress
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L136]
 +
|compress
 +
|'delete' requires GC
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L137]
 +
|compress
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L140]
 +
|compress
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L178]
 +
|uncompress
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L186]
 +
|uncompress
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L199]
 +
|uncompress
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L202]
 +
|uncompress
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L207]
 +
|uncompress
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L282]
 +
|Compress.error
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L337]
 +
|Compress.compress
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L342]
 +
|Compress.compress
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L349]
 +
|Compress.compress
 +
|'delete' requires GC
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L352]
 +
|Compress.compress
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L403]
 +
|Compress.flush
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L410]
 +
|Compress.flush
 +
|'delete' requires GC
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L413]
 +
|Compress.flush
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L446]
 +
|UnCompress.error
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L509]
 +
|UnCompress.uncompress
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L514]
 +
|UnCompress.uncompress
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L521]
 +
|UnCompress.uncompress
 +
|'delete' requires GC
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L524]
 +
|UnCompress.uncompress
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L553]
 +
|UnCompress.flush
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L560]
 +
|UnCompress.flush
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L565]
 +
|UnCompress.flush
 +
|'delete' requires GC
 +
| ???
 +
|-
 +
|-
 +
|std.zlib [https://github.com/D-Programming-Language/phobos/blob/95222b884d7ad1a75b336f8f64a5a3bb2303ed1f/std/zlib.d#L576]
 +
|UnCompress.flush
 +
|operator ~ may cause GC allocation
 +
| ???
 
|-
 
|-
|
 
|wrap
 
| ??
 
|}
 

Revision as of 05:15, 4 October 2014

Module Artifact Reason Possible Fix(es)
std.algorithm [1] TimSortImpl.sort setting 'length' may cause GC allocation ???
std.algorithm [2] TimSortImpl.ensureCapacity setting 'length' may cause GC allocation ???
std.array [3] insertInPlace setting 'length' may cause GC allocation ???
std.array [4] Appender.arr 'new' causes GC allocation ???
std.array [5] Appender.arr setting 'length' may cause GC allocation ???
std.array [6] Appender.ensureAddable 'new' causes GC allocation ???
std.array [7] Appender.ensureAddable 'new' causes GC allocation ???
std.array [8] Appender.ensureAddable setting 'length' may cause GC allocation ???
std.array [9] array operator ~= may cause GC allocation ???
std.array [10] arrayAllocImpl 'new' causes GC allocation ???
std.array [11] arrayAllocImpl 'new' causes GC allocation ???
std.bigint [12] BigInt.toString 'new' causes GC allocation ???
std.bigint [13] BigInt.toString operator ~ may cause GC allocation ???
std.bigint [14] BigInt.checkDivByZero 'new' causes GC allocation ???
std.bigint [15] toDecimalString operator ~= may cause GC allocation ???
std.bigint [16] toHex operator ~= may cause GC allocation ???
std.bitmanip [17] BitArray.toString operator ~ may cause GC allocation ???
std.bitmanip [18] BitArray.toString 'new' causes GC allocation ???
std.bitmanip [19] BitArray.bitsSet using closure causes GC allocation ???
std.bitmanip [20] BitArray.length setting 'length' may cause GC allocation ???
std.c.windows.winsock [21] FD_CREATE 'new' causes GC allocation ???
std.complex [22] Complex.toString operator ~= may cause GC allocation ???
std.complex [23] Complex.toString using closure causes GC allocation ???
std.complex [24] Complex.toString operator ~= may cause GC allocation ???
std.concurrency [25] ThreadScheduler.spawn 'new' causes GC allocation ???
std.concurrency [26] FiberScheduler.create using closure causes GC allocation ???
std.concurrency [27] FiberScheduler.create operator ~= may cause GC allocation ???
std.concurrency [28] FiberScheduler.create 'new' causes GC allocation ???
std.concurrency [29] unittest 'new' causes GC allocation ???
std.concurrency [30] unittest 'new' causes GC allocation ???
std.concurrency [31] unittest 'new' causes GC allocation ???
std.concurrency [32] unittest 'new' causes GC allocation ???
std.concurrency [33] unittest 'new' causes GC allocation ???
std.concurrency [34] unittest 'new' causes GC allocation ???
std.concurrency [35] unittest 'new' causes GC allocation ???
std.concurrency [36] thisTid 'new' causes GC allocation ???
std.concurrency [37] OnCrowding 'new' causes GC allocation ???
std.concurrency [38] static 'new' causes GC allocation ???
std.concurrency [39] register operator ~= may cause GC allocation ???
std.concurrency [40] register indexing an associative array may cause GC allocation ???
std.concurrency [41] register indexing an associative array may cause GC allocation ???
std.conv [42] toImpl 'new' causes GC allocation ???
std.conv [43] toImpl 'new' causes GC allocation ???
std.conv [44] parse 'new' causes GC allocation ???
std.conv [45] parse 'new' causes GC allocation ???
std.conv [46] parse 'new' causes GC allocation ???
std.conv [47] textImpl operator ~= may cause GC allocation ???
std.conv [48] toImpl 'new' causes GC allocation ???
std.conv [49] strippedOctalLiteral operator ~= may cause GC allocation ???
std.cstream [50] ulong 'new' causes GC allocation ???
std.cstream [51] din 'new' causes GC allocation ???
std.cstream [52] dout 'new' causes GC allocation ???
std.cstream [53] derr 'new' causes GC allocation ???
std.datetime [54] Date.dayOfYear 'new' causes GC allocation ???
std.datetime [55] SysTime.fracSecs 'new' causes GC allocation ???
std.datetime [56] SysTime.fracSecs 'new' causes GC allocation ???
std.datetime [57] SysTime.fracSec 'new' causes GC allocation ???
std.datetime [58] LocalTime.string operator ~= may cause GC allocation ???
std.datetime [59] LocalTime.string operator ~= may cause GC allocation ???
std.datetime [60]
'new' causes GC allocation ???
std.datetime [61]
'new' causes GC allocation ???
std.datetime [62]
'new' causes GC allocation ???
std.datetime [63]
'new' causes GC allocation ???
std.datetime [64]
'new' causes GC allocation ???
std.datetime [65]
'new' causes GC allocation ???
std.datetime [66]
'new' causes GC allocation ???
std.datetime [67]
'new' causes GC allocation ???
std.datetime [68]
'new' causes GC allocation ???
std.datetime [69]
'new' causes GC allocation ???
std.datetime [70]
'new' causes GC allocation ???
std.datetime [71]
'new' causes GC allocation ???
std.datetime [72]
'new' causes GC allocation ???
std.datetime [73]
'new' causes GC allocation ???
std.datetime [74]
'new' causes GC allocation ???
std.datetime [75]
'new' causes GC allocation ???
std.datetime [76]
'new' causes GC allocation ???
std.datetime [77]
'new' causes GC allocation ???
std.datetime [78]
'new' causes GC allocation ???
std.datetime [79]
'new' causes GC allocation ???
std.datetime [80]
'new' causes GC allocation ???
std.datetime [81]
operator ~= may cause GC allocation ???
std.datetime [82]
'new' causes GC allocation ???
std.datetime [83]
'new' causes GC allocation ???
std.datetime [84]
'new' causes GC allocation ???
std.datetime [85]
'new' causes GC allocation ???
std.datetime [86]
'new' causes GC allocation ???
std.datetime [87]
'new' causes GC allocation ???
std.datetime [88]
'delete' requires GC ???
std.datetime [89]
'delete' requires GC ???
std.datetime [90]
'delete' requires GC ???
std.datetime [91]
'delete' requires GC ???
std.datetime [92]
'delete' requires GC ???
std.datetime [93]
'new' causes GC allocation ???
std.datetime [94]
'delete' requires GC ???
std.datetime [95] unittest 'new' causes GC allocation ???
std.datetime [96] unittest 'new' causes GC allocation ???
std.datetime [97] unittest 'new' causes GC allocation ???
std.datetime [98] unittest 'new' causes GC allocation ???
std.datetime [99] DosFileTimeToSysTime 'new' causes GC allocation ???
std.datetime [100] DosFileTimeToSysTime 'new' causes GC allocation ???
std.datetime [101] SysTimeToDosFileTime 'new' causes GC allocation ???
std.datetime [102] SysTimeToDosFileTime 'new' causes GC allocation ???
std.datetime [103] enforceValid 'new' causes GC allocation ???
std.datetime [104] enforceValid 'new' causes GC allocation ???
std.datetime [105] enforceValid 'new' causes GC allocation ???
std.datetime [106] enforceValid 'new' causes GC allocation ???
std.datetime [107] enforceValid 'new' causes GC allocation ???
std.datetime [108] monthFromString 'new' causes GC allocation ???
std.datetime [109] SysTime.DateTime 'new' causes GC allocation ???
std.datetime [110] SysTime.DateTime 'new' causes GC allocation ???
std.datetime [111] SysTime.DateTime 'new' causes GC allocation ???
std.datetime [112] Date.yearBC 'new' causes GC allocation ???
std.datetime [113] Date.yearBC 'new' causes GC allocation ???
std.digest.digest [114] ubyte 'new' causes GC allocation ???
std.digest.digest [115] WrapperDigest.: 'new' causes GC allocation ???
std.digest.digest [116] WrapperDigest.: 'new' causes GC allocation ???
std.encoding [117] transcode 'new' causes GC allocation ???
std.encoding [118] transcode setting 'length' may cause GC allocation ???
std.encoding [119] EncodingScheme.register operator ~ may cause GC allocation ???
std.encoding [120] EncodingScheme.register 'new' causes GC allocation ???
std.encoding [121] EncodingScheme.register indexing an associative array may cause GC allocation ???
std.encoding [122] EncodingScheme.create operator ~ may cause GC allocation ???
std.encoding [123] EncodingScheme.create 'new' causes GC allocation ???
std.encoding [124] EncodingScheme.create 'new' causes GC allocation ???
std.encoding [125] EncodingScheme.create operator ~ may cause GC allocation ???
std.encoding [126] EncodingScheme.sanitize 'new' causes GC allocation ???
std.encoding [127] EncoderFunctions.WriteToString() operator ~= may cause GC allocation ???
std.exception [128] ErrnoException.msg operator ~ may cause GC allocation ???
std.exception [129] bailOut 'new' causes GC allocation ???
std.exception [130] errnoEnforce 'new' causes GC allocation ???
std.exception [131] enforceEx.enforceEx 'new' causes GC allocation ???
std.file [132] mkdir 'new' causes GC allocation ???
std.file [133] ensureDirExists 'new' causes GC allocation ???
std.file [134] cenforce 'new' causes GC allocation ???
std.file [135] thisExePath setting 'length' may cause GC allocation ???
std.file [136]
'new' causes GC allocation ???
std.file [137] read 'delete' requires GC ???
std.file [138] copy 'new' causes GC allocation ???
std.file [139] rmdirRecurse 'new' causes GC allocation ???
std.file [140] dirEntries using closure causes GC allocation ???
std.file [141] rename 'new' causes GC allocation ???
std.file [142] remove 'new' causes GC allocation ???
std.format [143] FormatSpec.fillUp 'new' causes GC allocation ???
std.format [144] formatRange 'new' causes GC allocation ???
std.format [145] formatNth operator ~= may cause GC allocation ???
std.format [146] formatNth operator ~ may cause GC allocation ???
std.format [147] getNthInt 'new' causes GC allocation ???
std.format [148] getNthInt 'new' causes GC allocation ???
std.format [149] primitiveTypeInfo associative array literal may cause GC allocation ???
std.format [150] doFormat 'new' causes GC allocation ???
std.format [151] doFormat 'new' causes GC allocation ???
std.format [152] doFormat 'new' causes GC allocation ???
std.format [153] doFormat 'new' causes GC allocation ???
std.format [154] doFormat operator ~ may cause GC allocation ???
std.format [155] doFormat 'new' causes GC allocation ???
std.format [156] doFormat 'new' causes GC allocation ???
std.format [157] doFormat 'new' causes GC allocation ???
std.format [158] doFormat 'new' causes GC allocation ???
std.format [159] doFormat 'new' causes GC allocation ???
std.format [160] doFormat 'new' causes GC allocation ???
std.format [161] FormatSpec.fillUp 'new' causes GC allocation ???
std.functional [162] memoize.memoize indexing an associative array may cause GC allocation ???
std.getopt [163] Option operator ~ may cause GC allocation ???
std.getopt [164] Option operator ~ may cause GC allocation ???
std.getopt [165] Option operator ~ may cause GC allocation ???
std.internal.digest.sha_SSSE3 [166] computed operator ~= may cause GC allocation ???
std.internal.digest.sha_SSSE3 [167] computed operator ~ may cause GC allocation ???
std.internal.digest.sha_SSSE3 [168] computed operator ~= may cause GC allocation ???
std.internal.digest.sha_SSSE3 [169] computed operator ~= may cause GC allocation ???
std.internal.digest.sha_SSSE3 [170] computed operator ~= may cause GC allocation ???
std.internal.digest.sha_SSSE3 [171] computed operator ~= may cause GC allocation ???
std.internal.digest.sha_SSSE3 [172] computed operator ~ may cause GC allocation ???
std.internal.digest.sha_SSSE3 [173] computed operator ~ may cause GC allocation ???
std.internal.digest.sha_SSSE3 [174] computed operator ~ may cause GC allocation ???
std.internal.digest.sha_SSSE3 [175] computed operator ~ may cause GC allocation ???
std.internal.digest.sha_SSSE3 [176] computed operator ~ may cause GC allocation ???
std.internal.digest.sha_SSSE3 [177] computed operator ~ may cause GC allocation ???
std.internal.digest.sha_SSSE3 [178] computed operator ~ may cause GC allocation ???
std.internal.digest.sha_SSSE3 [179] computed operator ~ may cause GC allocation ???
std.internal.digest.sha_SSSE3 [180] computed operator ~ may cause GC allocation ???
std.internal.digest.sha_SSSE3 [181] computed operator ~ may cause GC allocation ???
std.internal.digest.sha_SSSE3 [182] computed operator ~ may cause GC allocation ???
std.internal.digest.sha_SSSE3 [183] computed operator ~ may cause GC allocation ???
std.internal.digest.sha_SSSE3 [184] computed operator ~ may cause GC allocation ???
std.internal.math.biguintcore [185] nothrow 'new' causes GC allocation ???
std.internal.math.biguintcore [186] nothrow 'new' causes GC allocation ???
std.internal.math.biguintcore [187] nothrow 'new' causes GC allocation ???
std.internal.math.biguintcore [188] BigDigit 'new' causes GC allocation ???
std.internal.math.biguintcore [189] BigDigit 'new' causes GC allocation ???
std.internal.math.biguintcore [190] BigDigit 'new' causes GC allocation ???
std.internal.math.biguintcore [191] mulInternal 'new' causes GC allocation ???
std.internal.math.biguintcore [192] mulInternal 'delete' requires GC ???
std.internal.math.biguintcore [193] mulInternal 'new' causes GC allocation ???
std.internal.math.biguintcore [194] mulInternal 'delete' requires GC ???
std.internal.math.biguintcore [195] BigDigit 'new' causes GC allocation ???
std.internal.math.biguintcore [196] scratchbuff 'delete' requires GC ???
std.internal.math.biguintcore [197] divModInternal 'new' causes GC allocation ???
std.internal.math.biguintcore [198] divModInternal 'new' causes GC allocation ???
std.internal.math.biguintcore [199] divModInternal 'delete' requires GC ???
std.internal.math.biguintcore [200] divModInternal 'delete' requires GC ???
std.internal.math.biguintcore [201] biguintToDecimal setting 'length' may cause GC allocation ???
std.internal.math.biguintcore [202] the 'new' causes GC allocation ???
std.internal.math.biguintcore [203] BigUint.opAssign array literal may cause GC allocation ???
std.internal.math.biguintcore [204] BigUint.opAssign array literal may cause GC allocation ???
std.internal.math.biguintcore [205] BigUint.opAssign array literal may cause GC allocation ???
std.internal.math.biguintcore [206] BigUint.opAssign array literal may cause GC allocation ???
std.internal.math.biguintcore [207] BigUint.opAssign array literal may cause GC allocation ???
std.internal.math.biguintcore [208] BigUint.opAssign array literal may cause GC allocation ???
std.internal.math.biguintcore [209] nothrow 'new' causes GC allocation ???
std.internal.math.biguintcore [210] nothrow 'delete' requires GC ???
std.internal.math.biguintcore [211] BigUint.char 'new' causes GC allocation ???
std.internal.math.biguintcore [212] BigUint.char 'new' causes GC allocation ???
std.internal.math.biguintcore [213] BigUint.fromHexString 'new' causes GC allocation ???
std.internal.math.biguintcore [214] BigUint.fromHexString array literal may cause GC allocation ???
std.internal.math.biguintcore [215] BigUint.fromDecimalString array literal may cause GC allocation ???
std.internal.math.biguintcore [216] BigUint.fromDecimalString 'new' causes GC allocation ???
std.internal.math.biguintcore [217] BigUint.fromDecimalString setting 'length' may cause GC allocation ???
std.internal.math.biguintcore [218] BigUint.opShl 'new' causes GC allocation ???
std.internal.math.biguintcore [219] BigUint.mul 'new' causes GC allocation ???
std.internal.math.biguintcore [220] BigUint.divInt 'new' causes GC allocation ???
std.internal.math.biguintcore [221] BigUint.modInt 'new' causes GC allocation ???
std.internal.math.biguintcore [222] BigUint.modInt 'delete' requires GC ???
std.internal.math.biguintcore [223] BigUint.div 'new' causes GC allocation ???
std.internal.math.biguintcore [224] BigUint.mod 'new' causes GC allocation ???
std.internal.math.biguintcore [225] BigUint.mod 'new' causes GC allocation ???
std.internal.math.biguintcore [226] BigUint.pow 'new' causes GC allocation ???
std.internal.math.biguintcore [227] BigUint.pow 'new' causes GC allocation ???
std.internal.windows.advapi32 [228] loadAdvapi32 'new' causes GC allocation ???
std.internal.windows.advapi32 [229] loadAdvapi32 'new' causes GC allocation ???
std.internal.windows.advapi32 [230] freeAdvapi32 'new' causes GC allocation ???
std.json [231] JSONValue.inout operator ~ may cause GC allocation ???
std.json [232] toJSON 'new' causes GC allocation ???
std.json [233] toJSON indexing an associative array may cause GC allocation ???
std.net.curl [234] template using closure causes GC allocation ???
std.net.curl [235] template using closure causes GC allocation ???
std.net.curl [236] AsyncChunkInputRange 'new' causes GC allocation ???
std.net.curl [237] HTTP.Impl using closure causes GC allocation ???
std.net.curl [238] HTTP.Impl indexing an associative array may cause GC allocation ???
std.net.curl [239] HTTP.url operator ~ may cause GC allocation ???
std.net.curl [240] FTP.url operator ~ may cause GC allocation ???
std.net.curl [241] SMTP.Impl using closure causes GC allocation ???
std.net.curl [242] Curl.onReceive using closure causes GC allocation ???
std.net.curl [243] Curl.onReceiveHeader using closure causes GC allocation ???
std.net.curl [244] Curl.onSend using closure causes GC allocation ???
std.net.curl [245] Curl.onSeek using closure causes GC allocation ???
std.net.curl [246] Curl.onSocketOption using closure causes GC allocation ???
std.net.curl [247] Curl.onProgress using closure causes GC allocation ???
std.net.curl [248] Pool.void 'new' causes GC allocation ???
std.net.curl [249] _receiveAsyncChunks using closure causes GC allocation ???
std.net.curl [250] _finalizeAsyncChunks setting 'length' may cause GC allocation ???
std.numeric [251] Fft.memSpace 'new' causes GC allocation ???
std.outbuffer [252] OutBuffer.reserve setting 'length' may cause GC allocation ???
std.parallelism [253] TaskPool.abstractPutNoSync 'new' causes GC allocation ???
std.parallelism [254] TaskPool.abstractPutGroupNoSync 'new' causes GC allocation ???
std.parallelism [255] TaskPool.task 'new' causes GC allocation ???
std.parallelism [256] TaskPool.nWorkers 'new' causes GC allocation ???
std.parallelism [257] TaskPool.nWorkers 'new' causes GC allocation ???
std.parallelism [258] TaskPool.nWorkers 'new' causes GC allocation ???
std.parallelism [259] TaskPool.nWorkers 'new' causes GC allocation ???
std.parallelism [260] TaskPool.nWorkers 'new' causes GC allocation ???
std.parallelism [261] TaskPool.nWorkers 'new' causes GC allocation ???
std.parallelism [262] taskPool 'new' causes GC allocation ???
std.parallelism [263] ) 'new' causes GC allocation ???
std.parallelism [264] foreachErr 'new' causes GC allocation ???
std.parallelism [265] Task.executeInNewThread 'new' causes GC allocation ???
std.parallelism [266] Task.executeInNewThread 'new' causes GC allocation ???
std.path [267] buildNormalizedPath 'new' causes GC allocation ???
std.path [268] buildNormalizedPath 'new' causes GC allocation ???
std.path [269] absolutePath 'new' causes GC allocation ???
std.path [270] globMatch operator ~ may cause GC allocation ???
std.path [271] immutable(ElementEncodingType!(ElementType!Range))[] 'new' causes GC allocation ???
std.process [272] kill 'new' causes GC allocation ???
std.process [273] kill 'new' causes GC allocation ???
std.process [274] pipe 'new' causes GC allocation ???
std.process [275] pipe operator ~ may cause GC allocation ???
std.process [276] pipe operator ~ may cause GC allocation ???
std.process [277] pipe 'new' causes GC allocation ???
std.process [278] pipeProcessImpl 'new' causes GC allocation ???
std.process [279] pipeProcessImpl 'new' causes GC allocation ???
std.process [280] ProcessPipes.stdin 'new' causes GC allocation ???
std.process [281] ProcessPipes.stdout 'new' causes GC allocation ???
std.process [282] ProcessPipes.stderr 'new' causes GC allocation ???
std.process [283] ProcessException.newFromErrno operator ~ may cause GC allocation ???
std.process [284] ProcessException.newFromLastError operator ~ may cause GC allocation ???
std.process [285] escapeShellCommand operator ~= may cause GC allocation ???
std.process [286] escapeShellCommand operator ~ may cause GC allocation ???
std.process [287] escapeWindowsShellCommand 'new' causes GC allocation ???
std.process [288] escapeWindowsShellCommand 'new' causes GC allocation ???
std.process [289] escapeShellArguments 'new' causes GC allocation ???
std.process [290] escapeShellArguments setting 'length' may cause GC allocation ???
std.process [291] environment.opIndex operator ~ may cause GC allocation ???
std.process [292] environment.toAA indexing an associative array may cause GC allocation ???
std.process [293] environment.getImpl 'new' causes GC allocation ???
std.process [294] shell operator ~ may cause GC allocation ???
std.process [295] spawnProcessImpl 'new' causes GC allocation ???
std.process [296] spawnProcessImpl 'new' causes GC allocation ???
std.process [297] spawnProcessImpl operator ~ may cause GC allocation ???
std.process [298] spawnShell operator ~ may cause GC allocation ???
std.random [299]
'new' causes GC allocation ???
std.range [300] roundRobin operator ~ may cause GC allocation ???
std.range [301] roundRobin operator ~= may cause GC allocation ???
std.range [302] roundRobin operator ~ may cause GC allocation ???
std.range [303] roundRobin operator ~= may cause GC allocation ???
std.range [304] roundRobin operator ~ may cause GC allocation ???
std.range [305] roundRobin operator ~ may cause GC allocation ???
std.range [306] roundRobin operator ~= may cause GC allocation ???
std.range [307] roundRobin operator ~ may cause GC allocation ???
std.range [308] roundRobin operator ~= may cause GC allocation ???
std.range [309] roundRobin operator ~ may cause GC allocation ???
std.range [310] roundRobin operator ~ may cause GC allocation ???
std.range [311] roundRobin operator ~= may cause GC allocation ???
std.range [312] roundRobin operator ~ may cause GC allocation ???
std.range [313] roundRobin operator ~= may cause GC allocation ???
std.range [314] roundRobin operator ~ may cause GC allocation ???
std.range [315] roundRobin operator ~ may cause GC allocation ???
std.range [316] Repeat.opSlice 'new' causes GC allocation ???
std.range [317] put array literal may cause GC allocation ???
std.regex.internal.backtracking [318] CtContext.ctGenFixupCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [319] CtContext.ctGenFixupCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [320] CtContext.ctGenFixupCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [321] CtContext.ctGenFixupCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [322] CtContext.ctGenFixupCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [323] CtContext.ctGenFixupCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [324] CtContext.ctGenFixupCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [325] CtContext.ctGenFixupCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [326] CtContext.ctGenFixupCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [327] CtContext.ctAtomCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [328] CtContext.ctAtomCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [329] CtContext.ctAtomCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [330] CtContext.ctAtomCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [331] CtContext.ctAtomCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [332] CtContext.ctAtomCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [333] CtContext.ctAtomCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [334] CtContext.ctAtomCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [335] CtContext.ctAtomCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [336] CtContext.ctAtomCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [337] CtContext.ctAtomCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [338] CtContext.ctAtomCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [339] CtContext.ctAtomCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [340] CtContext.ctAtomCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [341] CtContext.ctAtomCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [342] CtContext.ctAtomCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [343] CtContext.ctGenRegEx operator ~= may cause GC allocation ???
std.regex.internal.backtracking [344] CtContext.ctGenRegEx operator ~= may cause GC allocation ???
std.regex.internal.backtracking [345] CtContext.ctGenRegEx operator ~= may cause GC allocation ???
std.regex.internal.backtracking [346] CtContext.ctGenRegEx operator ~= may cause GC allocation ???
std.regex.internal.backtracking [347] CtContext.restoreCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [348] CtContext.restoreCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [349] CtContext.restoreCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [350] CtContext.restoreCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [351] CtContext.restoreCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [352] CtContext.saveCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [353] CtContext.saveCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [354] CtContext.saveCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [355] CtContext.saveCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [356] CtContext.saveCode operator ~= may cause GC allocation ???
std.regex.internal.backtracking [357] CtContext.ctGenBlock operator ~= may cause GC allocation ???
std.regex.internal.backtracking [358] CtContext.ctGenGroup operator ~ may cause GC allocation ???
std.regex.internal.backtracking [359] CtContext.ctGenGroup operator ~= may cause GC allocation ???
std.regex.internal.backtracking [360] CtContext.ctGenGroup operator ~= may cause GC allocation ???
std.regex.internal.backtracking [361] CtContext.ctGenAlternation operator ~ may cause GC allocation ???
std.regex.internal.backtracking [362] CtContext.ctGenAlternation operator ~= may cause GC allocation ???
std.regex.internal.backtracking [363] CtContext.ctGenAlternation operator ~= may cause GC allocation ???
std.regex.internal.backtracking [364] CtContext.ctGenAlternation operator ~= may cause GC allocation ???
std.regex.internal.backtracking [365] CtContext.ctGenAlternation operator ~= may cause GC allocation ???
std.regex.internal.ir [366] disassemble operator ~ may cause GC allocation ???
std.regex.internal.ir [367] disassemble operator ~ may cause GC allocation ???
std.regex.internal.kickstart [368] ShiftOr.fetch setting 'length' may cause GC allocation ???
std.regex.internal.kickstart [369] ShiftOr.Regex operator ~= may cause GC allocation ???
std.regex.internal.kickstart [370] ShiftOr.Regex 'new' causes GC allocation ???
std.regex.internal.kickstart [371] ShiftOr.Regex operator ~= may cause GC allocation ???
std.regex.internal.kickstart [372] ShiftOr.Regex operator ~= may cause GC allocation ???
std.regex.internal.kickstart [373] ShiftOr.Regex operator ~= may cause GC allocation ???
std.regex.internal.kickstart [374] ShiftOr.Regex operator ~= may cause GC allocation ???
std.regex.internal.parser [375] Parser.charsetToIr operator ~= may cause GC allocation ???
std.regex.internal.parser [376] Parser.charsetToIr operator ~= may cause GC allocation ???
std.regex.internal.parser [377] Parser.charsetToIr operator ~= may cause GC allocation ???
std.regex.internal.parser [378] Parser.error 'new' causes GC allocation ???
std.regex.internal.parser [379] lightPostprocess 'new' causes GC allocation ???
std.regex.internal.parser [380] lightPostprocess 'new' causes GC allocation ???
std.regex.internal.parser [381] parseUniHex 'new' causes GC allocation ???
std.regex.internal.parser [382] Stack.push operator ~= may cause GC allocation ???
std.regex.internal.parser [383] Parser.markBackref setting 'length' may cause GC allocation ???
std.regex.internal.parser [384] Parser.put operator ~= may cause GC allocation ???
std.regex.internal.parser [385] Parser.putRaw operator ~= may cause GC allocation ???
std.regex.internal.parser [386] Parser.parseFlags 'new' causes GC allocation ???
std.regex.internal.parser [387] Parser.parseFlags 'new' causes GC allocation ???
std.regex.internal.parser [388] Parser.parseRegex operator ~= may cause GC allocation ???
std.regex.internal.parser [389] Parser.parseRegex operator ~= may cause GC allocation ???
std.regex.internal.parser [390] Parser.parseQuantifier setting 'length' may cause GC allocation ???
std.regex.internal.parser [391] Parser.parseQuantifier setting 'length' may cause GC allocation ???
std.regex.internal.parser [392] Parser.parseQuantifier operator ~= may cause GC allocation ???
std.regex.internal.parser [393] reverseBytecode 'new' causes GC allocation ???
std.regex.internal.thompson [394] ThompsonMatcher.eval indexing an associative array may cause GC allocation ???
std.regex.internal.thompson [395] ThompsonMatcher.eval indexing an associative array may cause GC allocation ???
std.regex.package [396] Captures.newMatches 'new' causes GC allocation ???
std.socket [397] getAddressInfoImpl 'new' causes GC allocation ???
std.socket [398] getAddressInfoImpl 'new' causes GC allocation ???
std.socket [399] getAddressInfoImpl 'new' causes GC allocation ???
std.socket [400] serviceToPort 'new' causes GC allocation ???
std.socket [401] getAddress setting 'length' may cause GC allocation ???
std.socket [402] getAddress 'new' causes GC allocation ???
std.socket [403] getAddress 'new' causes GC allocation ???
std.socket [404] getAddress operator ~= may cause GC allocation ???
std.socket [405] getAddress 'new' causes GC allocation ???
std.socket [406] parseAddress 'new' causes GC allocation ???
std.socket [407] Address.toHostString 'new' causes GC allocation ???
std.socket [408] Address.toHostString 'new' causes GC allocation ???
std.socket [409] Address.toHostString operator ~ may cause GC allocation ???
std.socket [410] Address.toHostString 'new' causes GC allocation ???
std.socket [411] Address.toHostString operator ~ may cause GC allocation ???
std.socket [412] Address.toServiceString 'new' causes GC allocation ???
std.socket [413] Address.toServiceString 'new' causes GC allocation ???
std.socket [414] Address.toServiceString operator ~ may cause GC allocation ???
std.socket [415] Address.toServiceString 'new' causes GC allocation ???
std.socket [416] Address.toServiceString operator ~ may cause GC allocation ???
std.socket [417] InternetAddress.char 'new' causes GC allocation ???
std.socket [418] InternetAddress.char 'new' causes GC allocation ???
std.socket [419] InternetAddress.string 'new' causes GC allocation ???
std.socket [420] Internet6Address.parse 'new' causes GC allocation ???
std.socket [421] SocketSet.SocketSet setting 'length' may cause GC allocation ???
std.socket [422] SocketSet.add setting 'length' may cause GC allocation ???
std.socket [423] SocketSet.add setting 'length' may cause GC allocation ???
std.socket [424] SocketOSException.msg operator ~ may cause GC allocation ???
std.socket [425] Socket.af 'new' causes GC allocation ???
std.socket [426] Socket.af 'new' causes GC allocation ???
std.socket [427] Socket.blocking 'new' causes GC allocation ???
std.socket [428] Socket.bind 'new' causes GC allocation ???
std.socket [429] Socket.connect 'new' causes GC allocation ???
std.socket [430] Socket.listen 'new' causes GC allocation ???
std.socket [431] Socket.accept 'new' causes GC allocation ???
std.socket [432] Socket.hostName 'new' causes GC allocation ???
std.socket [433] Socket.remoteAddress 'new' causes GC allocation ???
std.socket [434] Socket.remoteAddress 'new' causes GC allocation ???
std.socket [435] Socket.localAddress 'new' causes GC allocation ???
std.socket [436] Socket.localAddress 'new' causes GC allocation ???
std.socket [437] Socket.receiveFrom 'new' causes GC allocation ???
std.socket [438] Socket.getOption operator ~ may cause GC allocation ???
std.socket [439] Socket.getOption 'new' causes GC allocation ???
std.socket [440] Socket.setOption 'new' causes GC allocation ???
std.socket [441] Socket.setOption operator ~ may cause GC allocation ???
std.socket [442] Socket.setOption 'new' causes GC allocation ???
std.socket [443] Socket.setOption 'new' causes GC allocation ???
std.socket [444] Socket.setKeepAlive 'new' causes GC allocation ???
std.socket [445] Socket.select 'new' causes GC allocation ???
std.socket [446] Socket.Address 'new' causes GC allocation ???
std.socket [447] Socket.Address 'new' causes GC allocation ???
std.socket [448] Socket.Address 'new' causes GC allocation ???
std.socket [449] socketPair 'new' causes GC allocation ???
std.socket [450] static 'new' causes GC allocation ???
std.socket [451] socketPair 'new' causes GC allocation ???
std.socket [452] socketPair 'new' causes GC allocation ???
std.socket [453] Protocol.populate 'new' causes GC allocation ???
std.socket [454] Service.populate 'new' causes GC allocation ???
std.socket [455] InternetHost.validHostent 'new' causes GC allocation ???
std.socket [456] InternetHost.populate 'new' causes GC allocation ???
std.socket [457] InternetHost.populate 'new' causes GC allocation ???
std.socketstream [458] **** 'new' causes GC allocation ???
std.stdio [459] ) operator ~ may cause GC allocation ???
std.stdio [460] file operator ~ may cause GC allocation ???
std.stdio [461] the operator ~ may cause GC allocation ???
std.stdio [462] file 'new' causes GC allocation ???
std.stdio [463] with operator ~ may cause GC allocation ???
std.stdio [464] with 'new' causes GC allocation ???
std.stdio [465] with 'new' causes GC allocation ???
std.stdio [466] to operator ~ may cause GC allocation ???
std.stdio [467] the operator ~ may cause GC allocation ???
std.stdio [468] file operator ~ may cause GC allocation ???
std.stdio [469] file operator ~ may cause GC allocation ???
std.stdio [470] for operator ~ may cause GC allocation ???
std.stdio [471] for 'new' causes GC allocation ???
std.stdio [472] for operator ~ may cause GC allocation ???
std.stdio [473] for 'new' causes GC allocation ???
std.stdio [474] for operator ~ may cause GC allocation ???
std.stream [475] ungetcw operator ~= may cause GC allocation ???
std.stream [476] ungetcw operator ~= may cause GC allocation ???
std.stream [477] writeExact 'new' causes GC allocation ???
std.stream [478] flush setting 'length' may cause GC allocation ???
std.stream [479] string 'new' causes GC allocation ???
std.stream [480] string 'new' causes GC allocation ???
std.stream [481] string setting 'length' may cause GC allocation ???
std.stream [482] void 'new' causes GC allocation ???
std.stream [483] void 'new' causes GC allocation ???
std.stream [484] void 'new' causes GC allocation ???
std.stream [485] source 'new' causes GC allocation ???
std.stream [486] TreadLine(T) operator ~= may cause GC allocation ???
std.stream [487] void 'new' causes GC allocation ???
std.stream [488] open operator ~ may cause GC allocation ???
std.stream [489] open 'new' causes GC allocation ???
std.stream [490] ulong 'new' causes GC allocation ???
std.stream [491] this() 'new' causes GC allocation ???
std.stream [492] filename 'new' causes GC allocation ???
std.stream [493] hFile 'new' causes GC allocation ???
std.stream [494] wchar setting 'length' may cause GC allocation ???
std.stream [495] wchar 'new' causes GC allocation ???
std.stream [496] wchar 'new' causes GC allocation ???
std.stream [497] data 'new' causes GC allocation ???
std.stream [498] reserve setting 'length' may cause GC allocation ???
std.stream [499] void 'delete' requires GC ???
std.stream [500] readExact 'new' causes GC allocation ???
std.stream [501] readLine setting 'length' may cause GC allocation ???
std.stream [502] readLine operator ~= may cause GC allocation ???
std.stream [503] readLine setting 'length' may cause GC allocation ???
std.stream [504] readLineW setting 'length' may cause GC allocation ???
std.stream [505] readLineW operator ~= may cause GC allocation ???
std.stream [506] readLineW setting 'length' may cause GC allocation ???
std.stream [507] readString 'new' causes GC allocation ???
std.stream [508] readStringW 'new' causes GC allocation ???
std.stream [509] getc setting 'length' may cause GC allocation ???
std.stream [510] getcw setting 'length' may cause GC allocation ???
std.stream [511] getcw 'new' causes GC allocation ???
std.stream [512] ungetc setting 'length' may cause GC allocation ???
std.stream [513] ungetc operator ~= may cause GC allocation ???
std.stream [514] ungetcw setting 'length' may cause GC allocation ???
std.stream [515] ungetcw operator ~= may cause GC allocation ???
std.string [516] rightJustify 'new' causes GC allocation ???
std.string [517] rightJustify 'new' causes GC allocation ???
std.string [518] toStringz 'new' causes GC allocation ???
std.string [519] makeTrans 'new' causes GC allocation ???
std.string [520] format 'new' causes GC allocation ???
std.string [521] sformat using closure causes GC allocation ???
std.string [522] sformat 'new' causes GC allocation ???
std.string [523] soundex 'new' causes GC allocation ???
std.string [524] abbrev indexing an associative array may cause GC allocation ???
std.string [525] abbrev indexing an associative array may cause GC allocation ???
std.syserror [526] SysError.msg 'new' causes GC allocation ???
std.traits [527] std indexing an associative array may cause GC allocation ???
std.traits [528] std associative array literal may cause GC allocation ???
std.typecons [529] NotImplementedError.method operator ~ may cause GC allocation ???
std.typecons [530] Tuple.injectNamedFields operator ~= may cause GC allocation ???
std.typecons [531] Tuple.injectNamedFields operator ~= may cause GC allocation ???
std.uni [532] genUnrolledSwitchSearch operator ~= may cause GC allocation ???
std.uni [533] genUnrolledSwitchSearch operator ~= may cause GC allocation ???
std.uni [534] genUnrolledSwitchSearch operator ~= may cause GC allocation ???
std.uni [535] GcPolicy.realloc setting 'length' may cause GC allocation ???
std.uni [536] GcPolicy.append operator ~= may cause GC allocation ???
std.uni [537] InversionList.set operator ~= may cause GC allocation ???
std.uni [538] InversionList.set operator ~= may cause GC allocation ???
std.uni [539] InversionList.inverted array literal may cause GC allocation ???
std.uni [540] InversionList.inverted array literal may cause GC allocation ???
std.uni [541] InversionList.toSourceCode operator ~ may cause GC allocation ???
std.uni [542] InversionList.toSourceCode operator ~ may cause GC allocation ???
std.uni [543] InversionList.toSourceCode operator ~= may cause GC allocation ???
std.uni [544] InversionList.toSourceCode operator ~= may cause GC allocation ???
std.uni [545] InversionList.toSourceCode operator ~= may cause GC allocation ???
std.uni [546] InversionList.toSourceCode operator ~= may cause GC allocation ???
std.uni [547] InversionList.toSourceCode operator ~= may cause GC allocation ???
std.uni [548] InversionList.toSourceCode operator ~ may cause GC allocation ???
std.uni [549] InversionList.toSourceCode operator ~ may cause GC allocation ???
std.uni [550] InversionList.toSourceCode operator ~= may cause GC allocation ???
std.uni [551] InversionList.toSourceCode operator ~= may cause GC allocation ???
std.uni [552] InversionList.toSourceCode operator ~= may cause GC allocation ???
std.uni [553] InversionList.toSourceCode operator ~ may cause GC allocation ???
std.uni [554] InversionList.toSourceCode operator ~= may cause GC allocation ???
std.uni [555] InversionList.toSourceCode operator ~= may cause GC allocation ???
std.uni [556] InversionList.dropUpTo array literal may cause GC allocation ???
std.uni [557] InversionList.skipUpTo array literal may cause GC allocation ???
std.uni [558] compressTo operator ~= may cause GC allocation ???
std.uni [559] compressTo operator ~= may cause GC allocation ???
std.uni [560] compressTo operator ~= may cause GC allocation ???
std.uni [561] compressTo operator ~= may cause GC allocation ???
std.uni [562] compressTo operator ~= may cause GC allocation ???
std.uni [563] compressTo operator ~= may cause GC allocation ???
std.uni [564] isPrettyPropertyName array literal may cause GC allocation ???
std.uni [565] unicode.loadAny operator ~ may cause GC allocation ???
std.uni [566] unicode.loadAny 'new' causes GC allocation ???
std.uni [567] unicode.loadAny operator ~ may cause GC allocation ???
std.uni [568] encodeTo 'new' causes GC allocation ???
std.uni [569] toCaseInPlaceAlloc.toCaseInPlaceAlloc 'new' causes GC allocation ???
std.uni [570] MultiArray.sizes 'new' causes GC allocation ???
std.uni [571] MultiArray.n setting 'length' may cause GC allocation ???
std.uni [572] MultiArray.n setting 'length' may cause GC allocation ???
std.uri [573] URI_Encode 'new' causes GC allocation ???
std.uri [574] URI_Encode 'new' causes GC allocation ???
std.uri [575] URI_Encode 'new' causes GC allocation ???
std.uri [576] URI_Encode 'new' causes GC allocation ???
std.uri [577] URI_Encode 'new' causes GC allocation ???
std.uri [578] URIException.nothrow operator ~ may cause GC allocation ???
std.utf [579] decodeImpl 'new' causes GC allocation ???
std.utf [580] decodeImpl 'new' causes GC allocation ???
std.utf [581] decodeImpl 'new' causes GC allocation ???
std.utf [582] encode 'new' causes GC allocation ???
std.utf [583] encode 'new' causes GC allocation ???
std.utf [584] encode 'new' causes GC allocation ???
std.utf [585] encode 'new' causes GC allocation ???
std.utf [586] encode operator ~= may cause GC allocation ???
std.utf [587] encode 'new' causes GC allocation ???
std.utf [588] encode 'new' causes GC allocation ???
std.utf [589] encode operator ~= may cause GC allocation ???
std.utf [590] encode 'new' causes GC allocation ???
std.utf [591] encode operator ~= may cause GC allocation ???
std.utf [592] encode operator ~= may cause GC allocation ???
std.utf [593] encode 'new' causes GC allocation ???
std.utf [594] encode 'new' causes GC allocation ???
std.utf [595] encode operator ~= may cause GC allocation ???
std.utf [596] strideImpl 'new' causes GC allocation ???
std.utf [597] toUTF8 setting 'length' may cause GC allocation ???
std.utf [598] toUTF8 setting 'length' may cause GC allocation ???
std.utf [599] toUTF8 setting 'length' may cause GC allocation ???
std.utf [600] toUTF8 setting 'length' may cause GC allocation ???
std.utf [601] toUTF16 setting 'length' may cause GC allocation ???
std.utf [602] toUTF16 setting 'length' may cause GC allocation ???
std.utf [603] toUTF16 operator ~= may cause GC allocation ???
std.utf [604] wstring setting 'length' may cause GC allocation ???
std.utf [605] wstring setting 'length' may cause GC allocation ???
std.utf [606] toUTF32 setting 'length' may cause GC allocation ???
std.utf [607] toUTF32 setting 'length' may cause GC allocation ???
std.utf [608] strideBack 'new' causes GC allocation ???
std.utf [609] UTFException.msg operator ~ may cause GC allocation ???
std.utf [610] UTFException.string operator ~= may cause GC allocation ???
std.utf [611] toUCSindex 'new' causes GC allocation ???
std.utf [612] UTFException.string operator ~= may cause GC allocation ???
std.utf [613] UTFException.string operator ~= may cause GC allocation ???
std.uuid [614]
+/
'new' causes GC allocation ???
std.uuid [615]
+/
'new' causes GC allocation ???
std.uuid [616]
+/
'new' causes GC allocation ???
std.uuid [617]
+/
'new' causes GC allocation ???
std.uuid [618]
+/
'new' causes GC allocation ???
std.variant [619] VariantException operator ~ may cause GC allocation ???
std.variant [620] VariantN.handler 'new' causes GC allocation ???
std.variant [621] VariantN.handler 'new' causes GC allocation ???
std.variant [622] VariantN.handler 'new' causes GC allocation ???
std.variant [623] VariantN.handler array literal may cause GC allocation ???
std.variant [624] VariantN.handler operator ~= may cause GC allocation ???
std.variant [625] VariantN.handler operator ~= may cause GC allocation ???
std.variant [626] VariantN.handler 'new' causes GC allocation ???
std.variant [627] VariantN.handler 'new' causes GC allocation ???
std.variant [628] VariantN.get 'new' causes GC allocation ???
std.variant [629] VariantN.value 'new' causes GC allocation ???
std.windows.charset [630] fromMBSz setting 'length' may cause GC allocation ???
std.windows.charset [631] fromMBSz 'new' causes GC allocation ???
std.windows.charset [632] fromMBSz operator ~ may cause GC allocation ???
std.windows.charset [633] toMBSz setting 'length' may cause GC allocation ???
std.windows.charset [634] toMBSz 'new' causes GC allocation ???
std.windows.charset [635] toMBSz operator ~ may cause GC allocation ???
std.windows.registry [636] Key.setValue 'new' causes GC allocation ???
std.windows.registry [637] Value.value_EXPAND_SZ 'new' causes GC allocation ???
std.windows.registry [638] regCreateKey operator ~ may cause GC allocation ???
std.windows.registry [639] regDeleteKey operator ~ may cause GC allocation ???
std.windows.registry [640] regDeleteValue operator ~ may cause GC allocation ???
std.windows.registry [641] regEnumKeyName setting 'length' may cause GC allocation ???
std.windows.registry [642] regEnumValueName setting 'length' may cause GC allocation ???
std.windows.registry [643] regGetValueType operator ~ may cause GC allocation ???
std.windows.registry [644] regOpenKey operator ~ may cause GC allocation ???
std.windows.registry [645] regQueryValue 'new' causes GC allocation ???
std.windows.registry [646] regQueryValue 'new' causes GC allocation ???
std.windows.registry [647] regQueryValue setting 'length' may cause GC allocation ???
std.windows.registry [648] regQueryValue 'new' causes GC allocation ???
std.windows.registry [649] regQueryValue 'new' causes GC allocation ???
std.windows.registry [650] regQueryValue setting 'length' may cause GC allocation ???
std.windows.registry [651] import 'new' causes GC allocation ???
std.windows.registry [652] regQueryValue setting 'length' may cause GC allocation ???
std.windows.registry [653] regQueryValue 'new' causes GC allocation ???
std.windows.registry [654] regQueryValue 'new' causes GC allocation ???
std.windows.registry [655] regQueryValue setting 'length' may cause GC allocation ???
std.windows.registry [656] regQueryValue setting 'length' may cause GC allocation ???
std.windows.registry [657] regQueryValue setting 'length' may cause GC allocation ???
std.windows.registry [658] regQueryValue 'new' causes GC allocation ???
std.windows.registry [659] regQueryValue 'new' causes GC allocation ???
std.windows.registry [660] regQueryValue 'new' causes GC allocation ???
std.windows.registry [661] regQueryValue 'new' causes GC allocation ???
std.windows.registry [662] regQueryValue 'new' causes GC allocation ???
std.windows.registry [663] regQueryValue setting 'length' may cause GC allocation ???
std.windows.registry [664] regQueryValue 'new' causes GC allocation ???
std.windows.registry [665] regQueryValue setting 'length' may cause GC allocation ???
std.windows.registry [666] regQueryValue 'new' causes GC allocation ???
std.windows.registry [667] regSetValue operator ~ may cause GC allocation ???
std.windows.registry [668] regProcessNthKey 'new' causes GC allocation ???
std.windows.registry [669] regProcessNthValue 'new' causes GC allocation ???
std.windows.registry [670] Key.createKey 'new' causes GC allocation ???
std.windows.registry [671] Key.createKey 'new' causes GC allocation ???
std.windows.registry [672] Key.getKey 'new' causes GC allocation ???
std.windows.registry [673] Key.deleteKey 'new' causes GC allocation ???
std.windows.syserror [674] sysErrorString 'new' causes GC allocation ???
std.windows.syserror [675] sysErrorString operator ~ may cause GC allocation ???
std.xml [676] Tag.string operator ~ may cause GC allocation ???
std.xml [677] Tag.string operator ~ may cause GC allocation ???
std.xml [678] Tag.string indexing an associative array may cause GC allocation ???
std.xml [679] Tag.string 'new' causes GC allocation ???
std.xml [680] Tag.string setting 'length' may cause GC allocation ???
std.xml [681] Tag.string setting 'length' may cause GC allocation ???
std.xml [682] Tag.string 'new' causes GC allocation ???
std.xml [683] Tag.const operator ~ may cause GC allocation ???
std.xml [684] Tag.const operator ~= may cause GC allocation ???
std.xml [685] Comment.content 'new' causes GC allocation ???
std.xml [686] CData.content 'new' causes GC allocation ???
std.xml [687] XMLInstruction.content 'new' causes GC allocation ???
std.xml [688] ProcessingInstruction.content 'new' causes GC allocation ???
std.xml [689] ElementParser.parse indexing an associative array may cause GC allocation ???
std.xml [690] ElementParser.parse 'new' causes GC allocation ???
std.xml [691] ElementParser.parse indexing an associative array may cause GC allocation ???
std.xml [692] ElementParser.parse 'new' causes GC allocation ???
std.xml [693] ElementParser.parse indexing an associative array may cause GC allocation ???
std.xml [694] ElementParser.parse 'new' causes GC allocation ???
std.xml [695] ElementParser.parse 'new' causes GC allocation ???
std.xml [696] ElementParser.parse 'new' causes GC allocation ???
std.xml [697] ElementParser.parse indexing an associative array may cause GC allocation ???
std.xml [698] ElementParser.parse 'new' causes GC allocation ???
std.xml [699] ElementParser.parse 'new' causes GC allocation ???
std.xml [700] ElementParser.msg 'new' causes GC allocation ???
std.xml [701] ElementParser.msg 'new' causes GC allocation ???
std.xml [702] ElementParser.msg 'new' causes GC allocation ???
std.xml [703] ElementParser.checkAttValue operator ~ may cause GC allocation ???
std.xml [704] ElementParser.checkElement operator ~ may cause GC allocation ???
std.xml [705] ElementParser.checkLiteral operator ~ may cause GC allocation ???
std.xml [706] ElementParser.checkEnd 'new' causes GC allocation ???
std.xml [707] ElementParser.checkEnd operator ~ may cause GC allocation ???
std.xml [708] check 'new' causes GC allocation ???
std.xml [709] CheckException.const operator ~= may cause GC allocation ???
std.xml [710] CheckException.const operator ~= may cause GC allocation ???
std.xml [711] CheckException.const operator ~ may cause GC allocation ???
std.xml [712] Err 'new' causes GC allocation ???
std.xml [713] Err 'new' causes GC allocation ???
std.xml [714] Err operator ~= may cause GC allocation ???
std.xml [715] Err operator ~= may cause GC allocation ???
std.xml [716] Err 'new' causes GC allocation ???
std.xml [717] decode operator ~= may cause GC allocation ???
std.xml [718] decode operator ~= may cause GC allocation ???
std.xml [719] decode 'new' causes GC allocation ???
std.xml [720] decode operator ~= may cause GC allocation ???
std.xml [721] decode operator ~= may cause GC allocation ???
std.xml [722] decode operator ~= may cause GC allocation ???
std.xml [723] decode operator ~= may cause GC allocation ???
std.xml [724] decode operator ~= may cause GC allocation ???
std.xml [725] decode operator ~= may cause GC allocation ???
std.xml [726] decode 'new' causes GC allocation ???
std.xml [727] decode operator ~= may cause GC allocation ???
std.xml [728] Document.s 'new' causes GC allocation ???
std.xml [729] Element.name 'new' causes GC allocation ???
std.xml [730] Element.name 'new' causes GC allocation ???
std.xml [731] Element.tag_ 'new' causes GC allocation ???
std.xml [732] Element.tag_ indexing an associative array may cause GC allocation ???
std.xml [733] Element.opCatAssign operator ~= may cause GC allocation ???
std.xml [734] Element.opCatAssign operator ~= may cause GC allocation ???
std.xml [735] Element.opCatAssign operator ~= may cause GC allocation ???
std.xml [736] Element.opCatAssign operator ~= may cause GC allocation ???
std.xml [737] Element.opCatAssign operator ~= may cause GC allocation ???
std.xml [738] Element.appendItem operator ~= may cause GC allocation ???
std.xml [739] Element.parse using closure causes GC allocation ???
std.xml [740] Element.parse 'new' causes GC allocation ???
std.xml [741] Element.parse 'new' causes GC allocation ???
std.xml [742] Element.parse 'new' causes GC allocation ???
std.xml [743] Element.parse 'new' causes GC allocation ???
std.xml [744] Element.parse indexing an associative array may cause GC allocation ???
std.xml [745] Element.parse 'new' causes GC allocation ???
std.xml [746] Element.const 'new' causes GC allocation ???
std.xml [747] Element.const operator ~= may cause GC allocation ???
std.xml [748] Element.const array literal may cause GC allocation ???
std.xml [749] Element.const operator ~= may cause GC allocation ???
std.xml [750] Element.const operator ~= may cause GC allocation ???
std.xml [751] Element.const operator ~= may cause GC allocation ???
std.xml [752] Element.const operator ~= may cause GC allocation ???
std.zip [753] ArchiveMember.expandedData setting 'length' may cause GC allocation ???
std.zip [754] ArchiveMember.compressionMethod 'new' causes GC allocation ???
std.zip [755] ZipArchive.addMember indexing an associative array may cause GC allocation ???
std.zip [756] ZipArchive.build 'new' causes GC allocation ???
std.zip [757] ZipArchive.build 'new' causes GC allocation ???
std.zip [758] ZipArchive.build 'new' causes GC allocation ???
std.zip [759] ZipException.msg operator ~ may cause GC allocation ???
std.zip [760] ZipArchive.buffer 'new' causes GC allocation ???
std.zip [761] ZipArchive.buffer 'new' causes GC allocation ???
std.zip [762] ZipArchive.buffer 'new' causes GC allocation ???
std.zip [763] ZipArchive.buffer 'new' causes GC allocation ???
std.zip [764] ZipArchive.buffer 'new' causes GC allocation ???
std.zip [765] ZipArchive.buffer 'new' causes GC allocation ???
std.zip [766] ZipArchive.buffer 'new' causes GC allocation ???
std.zip [767] ZipArchive.buffer indexing an associative array may cause GC allocation ???
std.zip [768] ZipArchive.buffer 'new' causes GC allocation ???
std.zip [769] ZipArchive.expand 'new' causes GC allocation ???
std.zip [770] ZipArchive.expand 'new' causes GC allocation ???
std.zip [771] ZipArchive.expand 'new' causes GC allocation ???
std.zip [772] ZipArchive.expand 'new' causes GC allocation ???
std.zlib [773] compress 'new' causes GC allocation ???
std.zlib [774] compress 'delete' requires GC ???
std.zlib [775] compress 'new' causes GC allocation ???
std.zlib [776] compress setting 'length' may cause GC allocation ???
std.zlib [777] uncompress 'new' causes GC allocation ???
std.zlib [778] uncompress setting 'length' may cause GC allocation ???
std.zlib [779] uncompress setting 'length' may cause GC allocation ???
std.zlib [780] uncompress 'new' causes GC allocation ???
std.zlib [781] uncompress 'new' causes GC allocation ???
std.zlib [782] Compress.error 'new' causes GC allocation ???
std.zlib [783] Compress.compress 'new' causes GC allocation ???
std.zlib [784] Compress.compress operator ~ may cause GC allocation ???
std.zlib [785] Compress.compress 'delete' requires GC ???
std.zlib [786] Compress.compress setting 'length' may cause GC allocation ???
std.zlib [787] Compress.flush operator ~= may cause GC allocation ???
std.zlib [788] Compress.flush 'delete' requires GC ???
std.zlib [789] Compress.flush operator ~= may cause GC allocation ???
std.zlib [790] UnCompress.error 'new' causes GC allocation ???
std.zlib [791] UnCompress.uncompress 'new' causes GC allocation ???
std.zlib [792] UnCompress.uncompress operator ~ may cause GC allocation ???
std.zlib [793] UnCompress.uncompress 'delete' requires GC ???
std.zlib [794] UnCompress.uncompress setting 'length' may cause GC allocation ???
std.zlib [795] UnCompress.flush 'new' causes GC allocation ???
std.zlib [796] UnCompress.flush operator ~= may cause GC allocation ???
std.zlib [797] UnCompress.flush 'delete' requires GC ???
std.zlib [798] UnCompress.flush operator ~ may cause GC allocation ???