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

From D Wiki
Jump to: navigation, search
(If we compile all of unittests we get more results...)
Line 1: Line 1:
{| class="wikitable"
 
 
Auto-generated results as reported by compiler (building unittests with -vgc flag of DMD).
 
Auto-generated results as reported by compiler (building unittests with -vgc flag of DMD).
 
For tempaltes only code that is _instantiated_ by unittests build is accounted for (~ all covered code).
 
For tempaltes only code that is _instantiated_ by unittests build is accounted for (~ all covered code).
 
The tool used to post-process the output can be found [https://gist.github.com/DmitryOlshansky/d718be4ec12158cf2f02 here].
 
The tool used to post-process the output can be found [https://gist.github.com/DmitryOlshansky/d718be4ec12158cf2f02 here].
 +
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 20: Line 20:
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L1079 std.array]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L1127 std.algorithm]
|insertInPlace
+
|reduce.reduceImpl
|setting 'length' may cause GC allocation
 
| ???
 
|-
 
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L2386 std.array]
 
|Appender.arr
 
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L2401 std.array]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L11327 std.algorithm]
|Appender.arr
+
|r
|setting 'length' may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L2465 std.array]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L11400 std.algorithm]
|Appender.ensureAddable
+
|topNIndex
|'new' causes GC allocation
+
|using closure causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L2475 std.array]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L12752 std.algorithm]
|Appender.ensureAddable
+
|largestPartialIntersectionWeighted
|'new' causes GC allocation
+
|using closure causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L2477 std.array]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L12760 std.algorithm]
|Appender.ensureAddable
+
|ror
|setting 'length' may cause GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L34 std.array]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L13360 std.algorithm]
|array
+
|castSwitch
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L419 std.array]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L13388 std.algorithm]
|arrayAllocImpl
+
|castSwitch
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L420 std.array]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L13425 std.algorithm]
|arrayAllocImpl
+
|castSwitch
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/bigint.d#L478 std.bigint]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L13438 std.algorithm]
|BigInt.toString
+
|castSwitch
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/bigint.d#L478 std.bigint]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L13584 std.algorithm]
|BigInt.toString
+
|cartesianProduct
|operator ~ may cause GC allocation
+
|using closure causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/bigint.d#L478 std.bigint]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L14143 std.algorithm]
|BigInt.toString
+
|predSwitch
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/bigint.d#L478 std.bigint]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L14168 std.algorithm]
|BigInt.toString
+
|predSwitch
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/bigint.d#L561 std.bigint]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L3434 std.algorithm]
|BigInt.checkDivByZero
+
|SplitterResult.front
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/bigint.d#L568 std.bigint]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L3448 std.algorithm]
|toDecimalString
+
|SplitterResult.popFront
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
| ???
+
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/bigint.d#L576 std.bigint]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L3597 std.algorithm]
|toHex
+
|splitter
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/bitmanip.d#L1567 std.bitmanip]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L3604 std.algorithm]
|BitArray.toString
+
|splitter
|operator ~ may cause GC allocation
 
| ???
 
|-
 
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/bitmanip.d#L1567 std.bitmanip]
 
|BitArray.toString
 
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/bitmanip.d#L1567 std.bitmanip]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L5324 std.algorithm]
|BitArray.toString
+
|ignored
|operator ~ may cause GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/bitmanip.d#L1588 std.bitmanip]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L5329 std.algorithm]
|BitArray.bitsSet
+
|ignored
|using closure causes GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/bitmanip.d#L49 std.bitmanip]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L6801 std.algorithm]
|myToStringx
+
|commonPrefix
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/bitmanip.d#L54 std.bitmanip]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L8073 std.algorithm]
|myToString
+
|Levenshtein.path
|operator ~ may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/bitmanip.d#L602 std.bitmanip]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L8080 std.algorithm]
|BitArray.length
+
|Levenshtein.path
|setting 'length' may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/complex.d#L128 std.complex]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L8084 std.algorithm]
|Complex.toString
+
|Levenshtein.path
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/complex.d#L164 std.complex]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L8107 std.algorithm]
|Complex.toString
+
|Levenshtein.AllocMatrix
|using closure causes GC allocation
+
|'delete' requires GC
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/complex.d#L173 std.complex]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L8108 std.algorithm]
|Complex.toString
+
|Levenshtein.AllocMatrix
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L1019 std.concurrency]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L938 std.algorithm]
|locate
+
|Cache.front
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L1020 std.concurrency]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L943 std.algorithm]
|locate
+
|Cache.if
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L1021 std.concurrency]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L949 std.algorithm]
|locate
+
|Cache.popFront
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L1177 std.concurrency]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/algorithm.d#L958 std.algorithm]
|locate
+
|Cache.if
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L1187 std.concurrency]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L1079 std.array]
|locate
+
|insertInPlace
|'new' causes GC allocation
+
|setting 'length' may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L1266 std.concurrency]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L1143 std.array]
|locate
+
|insertInPlace
|'new' causes GC allocation
+
|setting 'length' may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L1503 std.concurrency]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L1426 std.array]
|locate
+
|replicate
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L334 std.concurrency]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L1485 std.array]
|thisTid
+
|split
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L838 std.concurrency]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L1499 std.array]
|OnCrowding
+
|split
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L907 std.concurrency]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L2022 std.array]
|static
+
|replace
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L948 std.concurrency]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L2138 std.array]
|register
+
|replaceInPlace
|indexing an associative array may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L948 std.concurrency]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L2386 std.array]
|register
+
|Appender.arr
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L948 std.concurrency]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L2401 std.array]
|register
+
|Appender.arr
|indexing an associative array may cause GC allocation
+
|setting 'length' may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L948 std.concurrency]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L2465 std.array]
|register
+
|Appender.ensureAddable
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L949 std.concurrency]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L2475 std.array]
|register
+
|Appender.ensureAddable
|indexing an associative array may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L1306 std.conv]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L2477 std.array]
|toImpl
+
|Appender.ensureAddable
|'new' causes GC allocation
+
|setting 'length' may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L1906 std.conv]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L2484 std.array]
|parse
+
|Appender.ensureAddable
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L1960 std.conv]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L267 std.array]
|parse
+
|assocArray
|'new' causes GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L2205 std.conv]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L34 std.array]
|parse
+
|array
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L3563 std.conv]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L419 std.array]
|textImpl
+
|arrayAllocImpl
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L358 std.conv]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L420 std.array]
|toImpl
+
|arrayAllocImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L3691 std.conv]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L421 std.array]
|strippedOctalLiteral
+
|arrayAllocImpl
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L50 std.conv]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L428 std.array]
|convError
+
|arrayAllocImpl
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L58 std.conv]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/array.d#L431 std.array]
|convError
+
|arrayAllocImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L68 std.conv]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/base64.d#L1077 std.base64]
|parseError
+
|Base64Impl.ubyte
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/cstream.d#L131 std.cstream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/base64.d#L1144 std.base64]
|ulong
+
|Base64Impl.Decoder
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/cstream.d#L246 std.cstream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/base64.d#L1190 std.base64]
|din
+
|Base64Impl.Decoder
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/base64.d#L1196 std.base64]
 +
|Base64Impl.Decoder
 +
|setting 'length' may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/cstream.d#L247 std.cstream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/base64.d#L1265 std.base64]
|dout
+
|Base64Impl.Decoder
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/cstream.d#L248 std.cstream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/base64.d#L1275 std.base64]
|derr
+
|Base64Impl.Decoder
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/csv.d#L129 std.csv]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/base64.d#L1287 std.base64]
|CSVException.string
+
|Base64Impl.Decoder
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L11753 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/base64.d#L1292 std.base64]
|Date.dayOfYear
+
|Base64Impl.Decoder
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L1928 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/base64.d#L1392 std.base64]
|SysTime.fracSecs
+
|Base64Impl.int
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L1929 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/base64.d#L1392 std.base64]
|SysTime.fracSecs
+
|Base64Impl.int
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L2079 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/base64.d#L1392 std.base64]
|SysTime.fracSec
+
|Base64Impl.int
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27814 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/base64.d#L417 std.base64]
|****
+
|Base64Impl.char
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27815 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/base64.d#L484 std.base64]
|****
+
|Base64Impl.Encoder
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27819 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/base64.d#L526 std.base64]
|****
+
|Base64Impl.Encoder
|'new' causes GC allocation
+
|setting 'length' may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27820 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/base64.d#L595 std.base64]
|****
+
|Base64Impl.Encoder
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27869 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/base64.d#L799 std.base64]
|****
+
|Base64Impl.ubyte
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27875 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/base64.d#L945 std.base64]
|****
+
|Base64Impl.decode
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27880 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/bigint.d#L478 std.bigint]
|****
+
|BigInt.toString
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27887 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/bigint.d#L478 std.bigint]
|****
+
|BigInt.toString
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27902 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/bigint.d#L561 std.bigint]
|****
+
|BigInt.checkDivByZero
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27908 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/bigint.d#L568 std.bigint]
|****
+
|toDecimalString
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27959 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/bigint.d#L576 std.bigint]
|****
+
|toHex
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27965 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/bitmanip.d#L1567 std.bitmanip]
|****
+
|BitArray.toString
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27970 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/bitmanip.d#L1567 std.bitmanip]
|****
+
|BitArray.toString
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27977 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/bitmanip.d#L1588 std.bitmanip]
|****
+
|BitArray.bitsSet
|'new' causes GC allocation
+
|using closure causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27992 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/bitmanip.d#L49 std.bitmanip]
|****
+
|myToStringx
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27998 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/bitmanip.d#L54 std.bitmanip]
|****
+
|myToString
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28011 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/bitmanip.d#L602 std.bitmanip]
|****
+
|BitArray.length
|'new' causes GC allocation
+
|setting 'length' may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28025 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/complex.d#L128 std.complex]
|****
+
|Complex.toString
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28028 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/complex.d#L164 std.complex]
|****
+
|Complex.toString
|'new' causes GC allocation
+
|using closure causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28039 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/complex.d#L173 std.complex]
|****
+
|Complex.toString
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28042 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L1019 std.concurrency]
|****
+
|locate
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28056 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L1020 std.concurrency]
|****
+
|locate
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28062 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L1021 std.concurrency]
|****
+
|locate
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28100 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L1177 std.concurrency]
|****
+
|locate
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28105 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L1187 std.concurrency]
|****
+
|locate
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28131 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L1266 std.concurrency]
|****
+
|locate
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28132 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L1503 std.concurrency]
|****
+
|locate
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28327 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L334 std.concurrency]
|****
+
|thisTid
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28355 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L476 std.concurrency]
|****
+
|_spawn
 +
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L480 std.concurrency]
 +
|_spawn
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30431 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L491 std.concurrency]
|DosFileTimeToSysTime
+
|_spawn
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30443 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L492 std.concurrency]
|DosFileTimeToSysTime
+
|_spawn
|'new' causes GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30474 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L738 std.concurrency]
|SysTimeToDosFileTime
+
|receiveOnly
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30477 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L838 std.concurrency]
|SysTimeToDosFileTime
+
|OnCrowding
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L31441 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L907 std.concurrency]
|enforceValid
+
|static
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L31446 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L948 std.concurrency]
|enforceValid
+
|register
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L31451 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L948 std.concurrency]
|enforceValid
+
|register
|'new' causes GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L31456 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/concurrency.d#L949 std.concurrency]
|enforceValid
+
|register
|'new' causes GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L31479 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/container/array.d#L251 std.container.array]
|enforceValid
+
|the
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L32164 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/container/array.d#L257 std.container.array]
|monthFromString
+
|the
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L392 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/container/array.d#L263 std.container.array]
|Clock.currStdTime
+
|the
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L577 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/container/array.d#L269 std.container.array]
|SysTime.DateTime
+
|the
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L578 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/container/array.d#L275 std.container.array]
|SysTime.DateTime
+
|the
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L635 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/container/array.d#L281 std.container.array]
|SysTime.DateTime
+
|the
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L7689 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/container/array.d#L287 std.container.array]
|SysTime.toISOString
+
|the
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L7692 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/container/array.d#L293 std.container.array]
|SysTime.toISOString
+
|the
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L7818 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/container/array.d#L304 std.container.array]
|SysTime.toISOExtString
+
|the
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L7821 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/container/array.d#L310 std.container.array]
|SysTime.toISOExtString
+
|the
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L7951 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/container/array.d#L316 std.container.array]
|SysTime.toSimpleString
+
|the
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L7954 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/container/array.d#L323 std.container.array]
|SysTime.toSimpleString
+
|the
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L9232 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/container/array.d#L330 std.container.array]
|Date.yearBC
+
|the
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L9269 std.datetime]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/container/array.d#L336 std.container.array]
|Date.yearBC
+
|the
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/digest/digest.d#L726 std.digest.digest]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/container/array.d#L342 std.container.array]
|ubyte
+
|the
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/digest/digest.d#L898 std.digest.digest]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/container/array.d#L445 std.container.array]
|****
+
|a
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/digest/digest.d#L933 std.digest.digest]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/container/array.d#L458 std.container.array]
|****
+
|to
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2023 std.encoding]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/container/array.d#L465 std.container.array]
|transcode
+
|to
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2032 std.encoding]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/container/array.d#L478 std.container.array]
|transcode
+
|operators
|setting 'length' may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2149 std.encoding]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/container/dlist.d#L142 std.container.dlist]
|EncodingScheme.register
+
|DList.createNode
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2149 std.encoding]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/container/dlist.d#L149 std.container.dlist]
|EncodingScheme.register
+
|DList.initialize
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2149 std.encoding]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L1300 std.conv]
|EncodingScheme.register
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2152 std.encoding]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L1306 std.conv]
|EncodingScheme.register
+
|toImpl
|indexing an associative array may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2172 std.encoding]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L1464 std.conv]
|EncodingScheme.create
+
|toImpl
|operator ~ may cause GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2172 std.encoding]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L1748 std.conv]
|EncodingScheme.create
+
|toImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2172 std.encoding]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L1906 std.conv]
|EncodingScheme.create
+
|parse
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2175 std.encoding]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L1960 std.conv]
|EncodingScheme.create
+
|parse
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2175 std.encoding]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L2205 std.conv]
|EncodingScheme.create
+
|parse
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2175 std.encoding]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L2281 std.conv]
|EncodingScheme.create
+
|parse
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L2282 std.conv]
 +
|parse
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2335 std.encoding]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L2334 std.conv]
|EncodingScheme.sanitize
+
|parse
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2456 std.encoding]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L2478 std.conv]
|EncodingSchemeASCII.const
+
|parse
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2542 std.encoding]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L2496 std.conv]
|EncodingSchemeLatin1.const
+
|parse
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2618 std.encoding]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L2595 std.conv]
|EncodingSchemeWindows1252.const
+
|parse
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2686 std.encoding]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L2598 std.conv]
|EncodingSchemeUtf8.const
+
|parse
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2757 std.encoding]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L2646 std.conv]
|EncodingSchemeUtf16Native.const
+
|parse
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2852 std.encoding]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L2655 std.conv]
|EncodingSchemeUtf32Native.const
+
|parse
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L389 std.encoding]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L2676 std.conv]
|EncoderFunctions.WriteToString()
+
|parse
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/exception.d#L1406 std.exception]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L2702 std.conv]
|ErrnoException.msg
+
|parse
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/exception.d#L374 std.exception]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L2710 std.conv]
|bailOut
+
|parse
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/exception.d#L534 std.exception]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L3135 std.conv]
|errnoEnforce
+
|parse
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/exception.d#L560 std.exception]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L3321 std.conv]
|enforceEx.enforceEx
+
|parse
|'new' causes GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L1532 std.file]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L3416 std.conv]
|ensureDirExists
+
|parseEscape
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L162 std.file]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L3563 std.conv]
|cenforce
+
|textImpl
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L1713 std.file]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L358 std.conv]
|rmdir
+
|toImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L1724 std.file]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L363 std.conv]
|rmdir
+
|toImpl
|setting 'length' may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L1728 std.file]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L3691 std.conv]
|rmdir
+
|strippedOctalLiteral
|setting 'length' may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L1731 std.file]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L50 std.conv]
|rmdir
+
|convError
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L2161 std.file]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L575 std.conv]
|****
+
|toImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L2280 std.file]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L58 std.conv]
|****
+
|convError
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L2322 std.file]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L68 std.conv]
|****
+
|parseError
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
 +
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L2524 std.file]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|rmdirRecurse
+
|toImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L292 std.file]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|read
+
|toImpl
|'delete' requires GC
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L2986 std.file]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|dirEntries
+
|toImpl
|using closure causes GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L504 std.file]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|remove
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L1044 std.format]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|FormatSpec.fillUp
+
|toImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L2297 std.format]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|formatRange
+
|toImpl
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L3218 std.format]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|formatNth
+
|toImpl
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L3219 std.format]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|formatNth
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L3264 std.format]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|getNthInt
+
|toImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L3269 std.format]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|getNthInt
+
|toImpl
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
 +
|toImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L4690 std.format]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|primitiveTypeInfo
+
|toImpl
|associative array literal may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L5086 std.format]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|doFormat
+
|toImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L5351 std.format]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|doFormat
+
|toImpl
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L5504 std.format]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|doFormat
+
|toImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L5541 std.format]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|doFormat
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L5541 std.format]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|doFormat
+
|toImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L5541 std.format]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|doFormat
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L5716 std.format]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|doFormat
+
|toImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L5801 std.format]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|doFormat
+
|toImpl
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L5812 std.format]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|doFormat
+
|toImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L5825 std.format]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|doFormat
+
|toImpl
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L5829 std.format]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|doFormat
+
|toImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L5931 std.format]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|doFormat
+
|toImpl
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L923 std.format]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|FormatSpec.fillUp
+
|toImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/functional.d#L854 std.functional]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|memoize.memoize
+
|toImpl
|indexing an associative array may cause GC allocation
 
| ???
 
|-
 
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L514 std.getopt]
 
|Option
 
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L516 std.getopt]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|Option
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L521 std.getopt]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|Option
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L148 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L149 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L155 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L167 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L173 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L179 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L203 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L203 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~= may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L204 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L223 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~= may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L228 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L240 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
 
| ???
 
|-
 
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L240 std.internal.digest.sha_SSSE3]
 
|computed
 
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L241 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
 +
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L242 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L243 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L244 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L252 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L252 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L253 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L254 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L255 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L256 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L262 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L262 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L263 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L264 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
 +
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L265 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L271 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L271 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L271 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L272 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L273 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L279 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L279 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L280 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L281 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L282 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L283 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L284 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L304 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L304 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L305 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L306 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
 +
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L306 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L307 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L313 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L313 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L313 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L329 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L336 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L341 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L341 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L345 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L345 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L345 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L346 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L346 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L350 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L350 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L351 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L356 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L356 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L378 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L379 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
 +
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L380 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L381 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L382 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L391 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L391 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L391 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L392 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L393 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L394 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L395 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L400 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L400 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L401 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L402 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L403 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L404 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L409 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L409 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L410 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L411 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L412 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L413 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L418 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L418 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
 
| ???
 
|-
 
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L418 std.internal.digest.sha_SSSE3]
 
|computed
 
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L419 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L420 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L421 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L422 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L422 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L423 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L424 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L424 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L425 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L425 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L434 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L435 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L436 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L437 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L447 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L448 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L453 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
 +
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L453 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L453 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L454 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L454 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L455 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L456 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L461 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L461 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
 
| ???
 
|-
 
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L462 std.internal.digest.sha_SSSE3]
 
|computed
 
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L463 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L468 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L468 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L469 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L470 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L476 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L476 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L476 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L477 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L477 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L478 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L479 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L479 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L480 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L480 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L482 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L482 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L482 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L483 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L483 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L484 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
 +
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L484 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L504 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L505 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L506 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L506 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L507 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L508 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L509 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L510 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L511 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L514 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L514 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
 
| ???
 
|-
 
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L514 std.internal.digest.sha_SSSE3]
 
|computed
 
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L515 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L516 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L517 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L519 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L519 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L519 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L520 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
 +
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L606 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L610 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L611 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/digest/sha_SSSE3.d#L635 std.internal.digest.sha_SSSE3]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L688 std.conv]
|computed
+
|toImpl
|array literal may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1020 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L842 std.conv]
|nothrow
+
|toImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1133 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/conv.d#L845 std.conv]
|nothrow
+
|toImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1166 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/cstream.d#L131 std.cstream]
|nothrow
+
|ulong
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1195 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/cstream.d#L246 std.cstream]
|BigDigit
+
|din
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1220 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/cstream.d#L247 std.cstream]
|BigDigit
+
|dout
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1241 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/cstream.d#L248 std.cstream]
|BigDigit
+
|derr
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1347 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/csv.d#L1037 std.csv]
|mulInternal
+
|CsvReader.prime
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/csv.d#L1042 std.csv]
 +
|CsvReader.prime
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1376 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/csv.d#L1087 std.csv]
|mulInternal
+
|CsvReader.prime
|'delete' requires GC
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1381 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/csv.d#L1216 std.csv]
|mulInternal
+
|CsvRecord.popFront
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1383 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/csv.d#L1225 std.csv]
|mulInternal
+
|CsvRecord.popFront
|'delete' requires GC
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1406 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/csv.d#L1266 std.csv]
|BigDigit
+
|CsvRecord.prime
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1408 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/csv.d#L129 std.csv]
|scratchbuff
+
|CSVException.string
|'delete' requires GC
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1427 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/csv.d#L1306 std.csv]
|divModInternal
+
|CsvRecord.prime
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1428 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/csv.d#L1397 std.csv]
|divModInternal
+
|csvNextToken
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1457 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/csv.d#L1436 std.csv]
|divModInternal
+
|csvNextToken
|'delete' requires GC
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1458 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/csv.d#L1450 std.csv]
|divModInternal
+
|csvNextToken
|'delete' requires GC
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1525 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/csv.d#L836 std.csv]
|biguintToDecimal
+
|CsvReader.input
|setting 'length' may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1580 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/csv.d#L866 std.csv]
|the
+
|CsvReader.input
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L165 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/csv.d#L874 std.csv]
|BigUint.opAssign
+
|CsvReader.input
|array literal may cause GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L166 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/csv.d#L883 std.csv]
|BigUint.opAssign
+
|CsvReader.input
|array literal may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L167 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/csv.d#L892 std.csv]
|BigUint.opAssign
+
|CsvReader.input
|array literal may cause GC allocation
+
|setting 'length' may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L168 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/csv.d#L896 std.csv]
|BigUint.opAssign
+
|CsvReader.input
|array literal may cause GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L177 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/csv.d#L899 std.csv]
|BigUint.opAssign
+
|CsvReader.input
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L181 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/csv.d#L900 std.csv]
|BigUint.opAssign
+
|CsvReader.input
|array literal may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L2299 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/csv.d#L918 std.csv]
|nothrow
+
|CsvReader.input
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L2322 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L11753 std.datetime]
|nothrow
+
|Date.dayOfYear
|'delete' requires GC
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L265 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L12428 std.datetime]
|BigUint.char
+
|Date.fromISOString
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L291 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L12434 std.datetime]
|BigUint.char
+
|Date.fromISOString
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L350 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L12435 std.datetime]
|BigUint.fromHexString
+
|Date.fromISOString
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L382 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L12440 std.datetime]
|BigUint.fromHexString
+
|Date.fromISOString
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L399 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L12442 std.datetime]
|BigUint.fromDecimalString
+
|Date.fromISOString
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L403 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L12445 std.datetime]
|BigUint.fromDecimalString
+
|Date.fromISOString
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L406 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L12544 std.datetime]
|BigUint.fromDecimalString
+
|Date.fromISOExtString
|setting 'length' may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L444 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L12550 std.datetime]
|BigUint.opShl
+
|Date.fromISOExtString
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L556 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L12551 std.datetime]
|BigUint.mul
+
|Date.fromISOExtString
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L558 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L12553 std.datetime]
|BigUint.mul
+
|Date.fromISOExtString
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L580 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L12555 std.datetime]
|BigUint.divInt
+
|Date.fromISOExtString
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L627 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L12560 std.datetime]
|BigUint.modInt
+
|Date.fromISOExtString
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L630 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L12562 std.datetime]
|BigUint.modInt
+
|Date.fromISOExtString
|'delete' requires GC
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L639 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L12566 std.datetime]
|BigUint.div
+
|Date.fromISOExtString
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L642 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L12665 std.datetime]
|BigUint.div
+
|Date.fromSimpleString
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L653 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L12671 std.datetime]
|BigUint.mod
+
|Date.fromSimpleString
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L655 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L12672 std.datetime]
|BigUint.mod
+
|Date.fromSimpleString
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L656 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L12673 std.datetime]
|BigUint.mod
+
|Date.fromSimpleString
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L691 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L12678 std.datetime]
|BigUint.pow
+
|Date.fromSimpleString
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L791 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L12680 std.datetime]
|BigUint.pow
+
|Date.fromSimpleString
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L818 std.internal.math.biguintcore]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L12684 std.datetime]
|BigUint.pow
+
|Date.fromSimpleString
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/json.d#L350 std.json]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L13853 std.datetime]
|JSONValue.inout
+
|TimeOfDay.fromISOString
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/json.d#L788 std.json]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L13859 std.datetime]
|toJSON
+
|TimeOfDay.fromISOString
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/json.d#L830 std.json]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L13860 std.datetime]
|toJSON
+
|TimeOfDay.fromISOString
|indexing an associative array may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/mmfile.d#L321 std.mmfile]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L13861 std.datetime]
|MmFile.filename
+
|TimeOfDay.fromISOString
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/mmfile.d#L328 std.mmfile]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L13955 std.datetime]
|MmFile.filename
+
|TimeOfDay.fromISOExtString
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/mmfile.d#L354 std.mmfile]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L13961 std.datetime]
|MmFile.filename
+
|TimeOfDay.fromISOExtString
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L1172 std.net.curl]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L13962 std.datetime]
|template
+
|TimeOfDay.fromISOExtString
|using closure causes GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L1221 std.net.curl]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L13964 std.datetime]
|template
+
|TimeOfDay.fromISOExtString
|using closure causes GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L1433 std.net.curl]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L13966 std.datetime]
|AsyncChunkInputRange
+
|TimeOfDay.fromISOExtString
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L2089 std.net.curl]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L13968 std.datetime]
|HTTP.Impl
+
|TimeOfDay.fromISOExtString
|using closure causes GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L2141 std.net.curl]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L16700 std.datetime]
|HTTP.Impl
+
|DateTime.fromISOString
|indexing an associative array may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L2265 std.net.curl]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L16703 std.datetime]
|HTTP.url
+
|DateTime.fromISOString
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L2932 std.net.curl]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L16783 std.datetime]
|FTP.url
+
|DateTime.fromISOExtString
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L3181 std.net.curl]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L16786 std.datetime]
|SMTP.Impl
+
|DateTime.fromISOExtString
|using closure causes GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L3782 std.net.curl]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L16864 std.datetime]
|Curl.onReceive
+
|DateTime.fromSimpleString
|using closure causes GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L3813 std.net.curl]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L16867 std.datetime]
|Curl.onReceiveHeader
+
|DateTime.fromSimpleString
|using closure causes GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L3860 std.net.curl]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L17240 std.datetime]
|Curl.onSend
+
|****
|using closure causes GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L3896 std.net.curl]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L17269 std.datetime]
|Curl.onSeek
+
|****
|using closure causes GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L3930 std.net.curl]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L17324 std.datetime]
|Curl.onSocketOption
+
|****
|using closure causes GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L3970 std.net.curl]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L17357 std.datetime]
|Curl.onProgress
+
|****
|using closure causes GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L4095 std.net.curl]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L17839 std.datetime]
|Pool.void
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L4118 std.net.curl]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L17871 std.datetime]
|_receiveAsyncChunks
+
|****
|using closure causes GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L4173 std.net.curl]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L17900 std.datetime]
|_finalizeAsyncChunks
+
|****
|setting 'length' may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/numeric.d#L2673 std.numeric]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L18015 std.datetime]
|Fft.memSpace
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/outbuffer.d#L84 std.outbuffer]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L18048 std.datetime]
|OutBuffer.reserve
+
|****
|setting 'length' may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L1206 std.parallelism]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L18078 std.datetime]
|TaskPool.abstractPutNoSync
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L1232 std.parallelism]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L18212 std.datetime]
|TaskPool.abstractPutGroupNoSync
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L1388 std.parallelism]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L18266 std.datetime]
|TaskPool.task
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L1445 std.parallelism]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L18313 std.datetime]
|TaskPool.nWorkers
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L1446 std.parallelism]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L18325 std.datetime]
|TaskPool.nWorkers
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L1447 std.parallelism]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L18335 std.datetime]
|TaskPool.nWorkers
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L1448 std.parallelism]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L18395 std.datetime]
|TaskPool.nWorkers
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L1450 std.parallelism]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L18408 std.datetime]
|TaskPool.nWorkers
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L1453 std.parallelism]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L18420 std.datetime]
|TaskPool.nWorkers
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L3278 std.parallelism]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L18664 std.datetime]
|taskPool
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L3386 std.parallelism]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L1928 std.datetime]
|)
+
|SysTime.fracSecs
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L3467 std.parallelism]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L1929 std.datetime]
|foreachErr
+
|SysTime.fracSecs
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L742 std.parallelism]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L20581 std.datetime]
|Task.executeInNewThread
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L748 std.parallelism]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L20634 std.datetime]
|Task.executeInNewThread
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L1190 std.path]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L20744 std.datetime]
|buildNormalizedPath
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L1234 std.path]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L2079 std.datetime]
|buildNormalizedPath
+
|SysTime.fracSec
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L1995 std.path]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L22775 std.datetime]
|absolutePath
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L2473 std.path]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L22805 std.datetime]
|globMatch
+
|****
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L2874 std.path]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L22944 std.datetime]
|expandTilde
+
|****
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L2913 std.path]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L24516 std.datetime]
|expandTilde
+
|delegate
|operator ~ may cause GC allocation
+
|using closure causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L2918 std.path]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L24620 std.datetime]
|expandTilde
+
|delegate
|operator ~ may cause GC allocation
+
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L24743 std.datetime]
 +
|delegate
 +
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L24843 std.datetime]
 +
|delegate
 +
|using closure causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L992 std.path]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L25153 std.datetime]
|****
+
|IntervalRange._enforceNotEmpty
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L1142 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L25167 std.datetime]
|Pid.returns
+
|IntervalRange._enforceCorrectDirection
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L1501 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L25176 std.datetime]
|pipe
+
|IntervalRange._enforceCorrectDirection
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L1505 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L25604 std.datetime]
|pipe
+
|PosInfIntervalRange._enforceCorrectDirection
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L1509 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L25889 std.datetime]
|pipe
+
|NegInfIntervalRange._enforceCorrectDirection
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L1714 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27460 std.datetime]
|pipeProcessImpl
+
|SimpleTimeZone.fromISOString
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L1728 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27465 std.datetime]
|pipeProcessImpl
+
|SimpleTimeZone.fromISOString
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L1895 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27476 std.datetime]
|ProcessPipes.stdin
+
|SimpleTimeZone.fromISOString
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L1911 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27481 std.datetime]
|ProcessPipes.stdout
+
|SimpleTimeZone.fromISOString
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L1927 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27482 std.datetime]
|ProcessPipes.stderr
+
|SimpleTimeZone.fromISOString
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L2134 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27487 std.datetime]
|ProcessException.newFromErrno
+
|SimpleTimeZone.fromISOString
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L2135 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27814 std.datetime]
|ProcessException.newFromErrno
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L2371 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27815 std.datetime]
|escapeWindowsShellCommand
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L2374 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27819 std.datetime]
|escapeWindowsShellCommand
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L2401 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27820 std.datetime]
|escapeShellArguments
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L2405 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27869 std.datetime]
|escapeShellArguments
+
|****
|setting 'length' may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L2445 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27875 std.datetime]
|charAllocator
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L2779 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27880 std.datetime]
|environment.opIndex
+
|****
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L2840 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27887 std.datetime]
|environment.Exception
+
|****
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L2900 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27902 std.datetime]
|environment.toAA
+
|****
|indexing an associative array may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L3220 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27908 std.datetime]
|use
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L3221 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27959 std.datetime]
|use
+
|****
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L3398 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27965 std.datetime]
|execvpe_
+
|****
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L3491 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27970 std.datetime]
|shell
+
|****
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L360 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27977 std.datetime]
|spawnProcessImpl
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L365 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27992 std.datetime]
|spawnProcessImpl
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L371 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L27998 std.datetime]
|spawnProcessImpl
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L375 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28011 std.datetime]
|spawnProcessImpl
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L399 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28025 std.datetime]
|spawnProcessImpl
+
|****
|operator ~ may cause GC allocation
 
| ???
 
|-
 
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L399 std.process]
 
|spawnProcessImpl
 
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L399 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28028 std.datetime]
|spawnProcessImpl
+
|****
|operator ~ may cause GC allocation
 
| ???
 
|-
 
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L399 std.process]
 
|spawnProcessImpl
 
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L481 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28039 std.datetime]
|spawnProcessImpl
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L593 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28042 std.datetime]
|createEnv
+
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L596 std.process]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28056 std.datetime]
|createEnv
+
|****
|operator ~ may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/random.d#L625 std.random]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28062 std.datetime]
 
|****
 
|****
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3009 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28100 std.datetime]
|roundRobin
+
|****
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3009 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28105 std.datetime]
|roundRobin
+
|****
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3009 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28131 std.datetime]
|roundRobin
+
|****
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3009 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28132 std.datetime]
|roundRobin
+
|****
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3009 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28327 std.datetime]
|roundRobin
+
|****
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3009 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L28355 std.datetime]
|roundRobin
+
|****
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3009 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30431 std.datetime]
|roundRobin
+
|DosFileTimeToSysTime
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3009 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30443 std.datetime]
|roundRobin
+
|DosFileTimeToSysTime
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3012 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30474 std.datetime]
|roundRobin
+
|SysTimeToDosFileTime
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3026 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30477 std.datetime]
|roundRobin
+
|SysTimeToDosFileTime
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3026 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30551 std.datetime]
|roundRobin
+
|parseRFC822DateTime
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3026 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30586 std.datetime]
|roundRobin
+
|parseRFC822DateTime
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3026 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30590 std.datetime]
|roundRobin
+
|parseRFC822DateTime
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3026 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30598 std.datetime]
|roundRobin
+
|parseRFC822DateTime
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3026 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30616 std.datetime]
|roundRobin
+
|parseRFC822DateTime
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3026 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30625 std.datetime]
|roundRobin
+
|parseRFC822DateTime
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3026 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30632 std.datetime]
|roundRobin
+
|parseRFC822DateTime
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3026 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30640 std.datetime]
|roundRobin
+
|parseRFC822DateTime
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3028 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30643 std.datetime]
|roundRobin
+
|parseRFC822DateTime
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30651 std.datetime]
|roundRobin
+
|parseRFC822DateTime
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30673 std.datetime]
|roundRobin
+
|parseRFC822DateTime
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30677 std.datetime]
|roundRobin
+
|parseRFC822DateTime
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30683 std.datetime]
|roundRobin
+
|parseRFC822DateTime
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30685 std.datetime]
|roundRobin
+
|parseRFC822DateTime
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30701 std.datetime]
|roundRobin
+
|parseRFC822DateTime
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30702 std.datetime]
|roundRobin
+
|parseRFC822DateTime
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30703 std.datetime]
|roundRobin
+
|parseRFC822DateTime
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30704 std.datetime]
|roundRobin
+
|parseRFC822DateTime
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3045 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30705 std.datetime]
|roundRobin
+
|parseRFC822DateTime
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L4287 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30706 std.datetime]
|Repeat.opSlice
+
|parseRFC822DateTime
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L686 std.range]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30707 std.datetime]
|put
+
|parseRFC822DateTime
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1018 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30708 std.datetime]
|CtContext.ctGenFixupCode
+
|parseRFC822DateTime
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1025 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30709 std.datetime]
|CtContext.ctGenFixupCode
+
|parseRFC822DateTime
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1047 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30714 std.datetime]
|CtContext.ctGenFixupCode
+
|parseRFC822DateTime
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1068 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30717 std.datetime]
|CtContext.ctGenFixupCode
+
|parseRFC822DateTime
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1078 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30730 std.datetime]
|CtContext.ctGenFixupCode
+
|parseRFC822DateTime
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1088 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L30735 std.datetime]
|CtContext.ctGenFixupCode
+
|parseRFC822DateTime
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1099 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L31441 std.datetime]
|CtContext.ctGenFixupCode
+
|enforceValid
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1107 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L31446 std.datetime]
|CtContext.ctGenFixupCode
+
|enforceValid
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1120 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L31451 std.datetime]
|CtContext.ctGenFixupCode
+
|enforceValid
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1188 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L31456 std.datetime]
|CtContext.ctAtomCode
+
|enforceValid
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1195 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L31479 std.datetime]
|CtContext.ctAtomCode
+
|enforceValid
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1201 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L32164 std.datetime]
|CtContext.ctAtomCode
+
|monthFromString
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1208 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L32298 std.datetime]
|CtContext.ctAtomCode
+
|fracSecsFromISOString
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1212 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L32301 std.datetime]
|CtContext.ctAtomCode
+
|fracSecsFromISOString
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1219 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L32302 std.datetime]
|CtContext.ctAtomCode
+
|fracSecsFromISOString
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1227 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L392 std.datetime]
|CtContext.ctAtomCode
+
|Clock.currStdTime
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1234 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L577 std.datetime]
|CtContext.ctAtomCode
+
|SysTime.DateTime
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1241 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L578 std.datetime]
|CtContext.ctAtomCode
+
|SysTime.DateTime
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1265 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L635 std.datetime]
|CtContext.ctAtomCode
+
|SysTime.DateTime
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1285 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L7689 std.datetime]
|CtContext.ctAtomCode
+
|SysTime.toISOString
|operator ~= may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1300 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L7692 std.datetime]
|CtContext.ctAtomCode
+
|SysTime.toISOString
|operator ~= may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1317 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L7818 std.datetime]
|CtContext.ctAtomCode
+
|SysTime.toISOExtString
|operator ~= may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1323 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L7821 std.datetime]
|CtContext.ctAtomCode
+
|SysTime.toISOExtString
|operator ~= may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1329 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L7951 std.datetime]
|CtContext.ctAtomCode
+
|SysTime.toSimpleString
|operator ~= may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1334 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L7954 std.datetime]
|CtContext.ctAtomCode
+
|SysTime.toSimpleString
|operator ~= may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1367 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L8145 std.datetime]
|CtContext.ctGenRegEx
+
|SysTime.fromISOString
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1387 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L8316 std.datetime]
|CtContext.ctGenRegEx
+
|SysTime.fromISOExtString
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1388 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L8363 std.datetime]
|CtContext.ctGenRegEx
+
|SysTime.fromISOExtString
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L1390 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L8537 std.datetime]
|CtContext.ctGenRegEx
+
|SysTime.fromSimpleString
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L732 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L8584 std.datetime]
|ctSub
+
|SysTime.fromSimpleString
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L789 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L9232 std.datetime]
|CtContext.restoreCode
+
|Date.yearBC
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L796 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/datetime.d#L9269 std.datetime]
|CtContext.restoreCode
+
|Date.yearBC
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L802 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/digest/digest.d#L726 std.digest.digest]
|CtContext.restoreCode
+
|ubyte
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L804 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L1421 std.encoding]
|CtContext.restoreCode
+
|sanitize
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L808 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2023 std.encoding]
|CtContext.restoreCode
+
|transcode
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L823 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2032 std.encoding]
|CtContext.saveCode
+
|transcode
|operator ~= may cause GC allocation
+
|setting 'length' may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L826 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2149 std.encoding]
|CtContext.saveCode
+
|EncodingScheme.register
|operator ~= may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L830 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2149 std.encoding]
|CtContext.saveCode
+
|EncodingScheme.register
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L834 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2152 std.encoding]
|CtContext.saveCode
+
|EncodingScheme.register
|operator ~= may cause GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L836 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2172 std.encoding]
|CtContext.saveCode
+
|EncodingScheme.create
|operator ~= may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L849 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2172 std.encoding]
|CtContext.ctGenBlock
+
|EncodingScheme.create
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L884 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2175 std.encoding]
|CtContext.ctGenGroup
+
|EncodingScheme.create
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L885 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2175 std.encoding]
|CtContext.ctGenGroup
+
|EncodingScheme.create
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L912 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2335 std.encoding]
|CtContext.ctGenGroup
+
|EncodingScheme.sanitize
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L978 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2456 std.encoding]
|CtContext.ctGenAlternation
+
|EncodingSchemeASCII.const
|operator ~ may cause GC allocation
+
|array literal may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L980 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2542 std.encoding]
|CtContext.ctGenAlternation
+
|EncodingSchemeLatin1.const
|operator ~= may cause GC allocation
+
|array literal may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L985 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2618 std.encoding]
|CtContext.ctGenAlternation
+
|EncodingSchemeWindows1252.const
|operator ~= may cause GC allocation
+
|array literal may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L993 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2686 std.encoding]
|CtContext.ctGenAlternation
+
|EncodingSchemeUtf8.const
|operator ~= may cause GC allocation
+
|array literal may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/backtracking.d#L996 std.regex.internal.backtracking]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2757 std.encoding]
|CtContext.ctGenAlternation
+
|EncodingSchemeUtf16Native.const
|operator ~= may cause GC allocation
+
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L2852 std.encoding]
 +
|EncodingSchemeUtf32Native.const
 +
|array literal may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/ir.d#L400 std.regex.internal.ir]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/encoding.d#L389 std.encoding]
|disassemble
+
|EncoderFunctions.WriteToString()
|operator ~ may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/ir.d#L403 std.regex.internal.ir]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/exception.d#L1406 std.exception]
|disassemble
+
|ErrnoException.msg
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/ir.d#L43 std.regex.internal.ir]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/exception.d#L221 std.exception]
|getTrie
+
|assertThrown
|indexing an associative array may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/kickstart.d#L117 std.regex.internal.kickstart]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/exception.d#L374 std.exception]
|ShiftOr.fetch
+
|bailOut
|setting 'length' may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/kickstart.d#L202 std.regex.internal.kickstart]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/exception.d#L378 std.exception]
|ShiftOr.Regex
+
|bailOut
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/kickstart.d#L227 std.regex.internal.kickstart]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/exception.d#L534 std.exception]
|ShiftOr.Regex
+
|errnoEnforce
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/kickstart.d#L259 std.regex.internal.kickstart]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/exception.d#L560 std.exception]
|ShiftOr.Regex
+
|enforceEx.enforceEx
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/kickstart.d#L284 std.regex.internal.kickstart]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/exception.d#L572 std.exception]
|ShiftOr.Regex
+
|enforceEx.enforceEx
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/kickstart.d#L305 std.regex.internal.kickstart]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/exception.d#L84 std.exception]
|ShiftOr.Regex
+
|assertNotThrown
|operator ~= may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/kickstart.d#L326 std.regex.internal.kickstart]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/exception.d#L85 std.exception]
|ShiftOr.Regex
+
|assertNotThrown
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/parser.d#L1283 std.regex.internal.parser]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/exception.d#L902 std.exception]
|Parser.charsetToIr
+
|assumeWontThrow
|operator ~= may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/parser.d#L1289 std.regex.internal.parser]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/exception.d#L903 std.exception]
|Parser.charsetToIr
+
|assumeWontThrow
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/parser.d#L1291 std.regex.internal.parser]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/exception.d#L903 std.exception]
|Parser.charsetToIr
+
|assumeWontThrow
|operator ~= may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/parser.d#L1423 std.regex.internal.parser]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/exception.d#L903 std.exception]
|Parser.error
+
|assumeWontThrow
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/parser.d#L1452 std.regex.internal.parser]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/exception.d#L903 std.exception]
|lightPostprocess
+
|assumeWontThrow
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/parser.d#L1500 std.regex.internal.parser]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L1532 std.file]
|lightPostprocess
+
|ensureDirExists
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/parser.d#L178 std.regex.internal.parser]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L162 std.file]
|parseUniHex
+
|cenforce
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/parser.d#L225 std.regex.internal.parser]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L1713 std.file]
|getTrie
+
|rmdir
|indexing an associative array may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/parser.d#L263 std.regex.internal.parser]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L1724 std.file]
|Stack.push
+
|rmdir
|operator ~= may cause GC allocation
+
|setting 'length' may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/parser.d#L335 std.regex.internal.parser]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L1728 std.file]
|Parser.markBackref
+
|rmdir
 
|setting 'length' may cause GC allocation
 
|setting 'length' may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/parser.d#L382 std.regex.internal.parser]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L1731 std.file]
|Parser.put
+
|rmdir
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L2161 std.file]
 +
|****
 +
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/parser.d#L389 std.regex.internal.parser]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L2280 std.file]
|Parser.putRaw
+
|****
|operator ~= may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/parser.d#L430 std.regex.internal.parser]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L2322 std.file]
|Parser.parseFlags
+
|****
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/parser.d#L435 std.regex.internal.parser]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L2524 std.file]
|Parser.parseFlags
+
|rmdirRecurse
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/parser.d#L483 std.regex.internal.parser]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L292 std.file]
|Parser.parseRegex
+
|read
|operator ~= may cause GC allocation
+
|'delete' requires GC
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/parser.d#L487 std.regex.internal.parser]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L2986 std.file]
|Parser.parseRegex
+
|dirEntries
|operator ~= may cause GC allocation
+
|using closure causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/parser.d#L679 std.regex.internal.parser]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L504 std.file]
|Parser.parseQuantifier
+
|remove
|setting 'length' may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/parser.d#L728 std.regex.internal.parser]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/file.d#L54 std.file]
|Parser.parseQuantifier
+
|std
|setting 'length' may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/parser.d#L732 std.regex.internal.parser]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L1044 std.format]
|Parser.parseQuantifier
+
|FormatSpec.fillUp
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/parser.d#L79 std.regex.internal.parser]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L1224 std.format]
|reverseBytecode
+
|singleSpec
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/thompson.d#L677 std.regex.internal.thompson]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L1225 std.format]
|ThompsonMatcher.eval
+
|singleSpec
|indexing an associative array may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/internal/thompson.d#L704 std.regex.internal.thompson]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L1236 std.format]
|ThompsonMatcher.eval
+
|singleSpec
|indexing an associative array may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/regex/package.d#L415 std.regex.package]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L2297 std.format]
|Captures.newMatches
+
|formatRange
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1034 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L3218 std.format]
|getAddressInfoImpl
+
|formatNth
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L3219 std.format]
 +
|formatNth
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L3231 std.format]
 +
|formatNth
 +
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1045 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L3264 std.format]
|getAddressInfoImpl
+
|getNthInt
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1052 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L3269 std.format]
|getAddressInfoImpl
+
|getNthInt
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1100 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L4561 std.format]
|serviceToPort
+
|unformatRange
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1135 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L4568 std.format]
|getAddress
+
|unformatRange
|setting 'length' may cause GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1152 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L4690 std.format]
|getAddress
+
|primitiveTypeInfo
|'new' causes GC allocation
+
|associative array literal may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1154 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L5086 std.format]
|getAddress
+
|doFormat
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1159 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L5351 std.format]
|getAddress
+
|doFormat
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1159 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L5504 std.format]
|getAddress
+
|doFormat
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1159 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L5541 std.format]
|getAddress
+
|doFormat
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1239 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L5541 std.format]
|parseAddress
+
|doFormat
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1240 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L5716 std.format]
|parseAddress
+
|doFormat
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1346 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L5801 std.format]
|Address.toHostString
+
|doFormat
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1362 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L5812 std.format]
|Address.toHostString
+
|doFormat
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1362 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L5825 std.format]
|Address.toHostString
+
|doFormat
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1362 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L5829 std.format]
|Address.toHostString
+
|doFormat
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1362 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L5931 std.format]
|Address.toHostString
+
|doFormat
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1367 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/format.d#L923 std.format]
|Address.toHostString
+
|FormatSpec.fillUp
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1367 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/functional.d#L445 std.functional]
|Address.toHostString
+
|partial.if
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/functional.d#L446 std.functional]
 +
|partial.if
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/functional.d#L854 std.functional]
 +
|memoize.memoize
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L514 std.getopt]
 +
|Option
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1367 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L516 std.getopt]
|Address.toHostString
+
|Option
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1367 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L521 std.getopt]
|Address.toHostString
+
|Option
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1377 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L557 std.getopt]
|Address.toServiceString
+
|getoptImpl
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
 +
|getoptImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1383 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Address.toServiceString
+
|getoptImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1383 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Address.toServiceString
+
|getoptImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1383 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Address.toServiceString
+
|getoptImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1383 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Address.toServiceString
+
|getoptImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1388 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Address.toServiceString
+
|getoptImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1388 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Address.toServiceString
+
|getoptImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1388 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Address.toServiceString
+
|getoptImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1451 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Address.string
+
|getoptImpl
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1453 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Address.string
+
|getoptImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1597 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|InternetAddress.char
+
|getoptImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1600 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|InternetAddress.char
+
|getoptImpl
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1664 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|InternetAddress.string
+
|getoptImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1874 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Internet6Address.parse
+
|getoptImpl
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1942 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|if
+
|getoptImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2164 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|SocketSet.SocketSet
+
|getoptImpl
|setting 'length' may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2173 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|SocketSet.SocketSet
+
|getoptImpl
|setting 'length' may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2230 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|SocketSet.add
+
|getoptImpl
|setting 'length' may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2231 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|SocketSet.add
+
|getoptImpl
|setting 'length' may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L256 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|SocketOSException.msg
+
|getoptImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2592 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Socket.af
+
|getoptImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2612 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Socket.af
+
|getoptImpl
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2691 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Socket.blocking
+
|getoptImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2713 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Socket.bind
+
|getoptImpl
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2745 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Socket.connect
+
|getoptImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2757 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Socket.listen
+
|getoptImpl
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2771 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Socket.Socket
+
|getoptImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2783 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Socket.accept
+
|getoptImpl
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
 +
|getoptImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2846 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Socket.hostName
+
|getoptImpl
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2856 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Socket.remoteAddress
+
|getoptImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2858 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Socket.remoteAddress
+
|getoptImpl
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2869 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Socket.localAddress
+
|getoptImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2871 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Socket.localAddress
+
|getoptImpl
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3058 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Socket.receiveFrom
+
|getoptImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3081 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Socket.getOption
+
|getoptImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3081 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Socket.getOption
+
|getoptImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3081 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Socket.getOption
+
|getoptImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3081 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Socket.getOption
+
|getoptImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3106 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Socket.setOption
+
|getoptImpl
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3168 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Socket.setOption
+
|getoptImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3168 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Socket.setOption
+
|getoptImpl
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3168 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Socket.setOption
+
|getoptImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3170 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Socket.setOption
+
|getoptImpl
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3362 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Socket.select
+
|getoptImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3386 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L571 std.getopt]
|Socket.Address
+
|getoptImpl
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3390 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L606 std.getopt]
|Socket.Address
+
|getoptImpl
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3394 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L606 std.getopt]
|Socket.Address
+
|getoptImpl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3471 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L615 std.getopt]
|socketPair
+
|getoptImpl
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3475 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L643 std.getopt]
|socketPair
+
|handleOption
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L484 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L646 std.getopt]
|Protocol.populate
+
|handleOption
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L584 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L648 std.getopt]
|Service.populate
+
|handleOption
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L723 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L664 std.getopt]
|InternetHost.validHostent
+
|handleOption
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L743 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L690 std.getopt]
|InternetHost.populate
+
|handleOption
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L764 std.socket]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L692 std.getopt]
|InternetHost.populate
+
|handleOption
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socketstream.d#L128 std.socketstream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L738 std.getopt]
|SocketStream.SocketStream
+
|handleOption
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L1009 std.stdio]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L743 std.getopt]
|)
+
|handleOption
|operator ~ may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L1042 std.stdio]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/getopt.d#L766 std.getopt]
|file
+
|handleOption
|operator ~ may cause GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L1073 std.stdio]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L101 std.internal.math.biguintcore]
|the
+
|BigUint.immutable(BigDigit)
|operator ~ may cause GC allocation
+
|array literal may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L2064 std.stdio]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1020 std.internal.math.biguintcore]
|file
+
|includeSign
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L3633 std.stdio]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1133 std.internal.math.biguintcore]
|with
+
|BigDigit
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L3639 std.stdio]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1166 std.internal.math.biguintcore]
|with
+
|BigDigit
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L3645 std.stdio]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1195 std.internal.math.biguintcore]
|with
+
|BigDigit
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L3919 std.stdio]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1220 std.internal.math.biguintcore]
|readlnImpl
+
|BigDigit
|setting 'length' may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L3923 std.stdio]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1241 std.internal.math.biguintcore]
|readlnImpl
+
|BigDigit
|operator ~= may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L3947 std.stdio]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1347 std.internal.math.biguintcore]
|readlnImpl
+
|mulInternal
|setting 'length' may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L3953 std.stdio]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1376 std.internal.math.biguintcore]
|readlnImpl
+
|mulInternal
|setting 'length' may cause GC allocation
+
|'delete' requires GC
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L4087 std.stdio]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1381 std.internal.math.biguintcore]
|readlnImpl
+
|mulInternal
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L4090 std.stdio]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1383 std.internal.math.biguintcore]
|readlnImpl
+
|mulInternal
 +
|'delete' requires GC
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1406 std.internal.math.biguintcore]
 +
|BigDigit
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L4108 std.stdio]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1408 std.internal.math.biguintcore]
|readlnImpl
+
|scratchbuff
 +
|'delete' requires GC
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1427 std.internal.math.biguintcore]
 +
|divModInternal
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L4111 std.stdio]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1428 std.internal.math.biguintcore]
|readlnImpl
+
|divModInternal
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L421 std.stdio]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1457 std.internal.math.biguintcore]
|_popen
+
|divModInternal
|operator ~ may cause GC allocation
+
|'delete' requires GC
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L634 std.stdio]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1458 std.internal.math.biguintcore]
|to
+
|divModInternal
|operator ~ may cause GC allocation
+
|'delete' requires GC
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L641 std.stdio]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1525 std.internal.math.biguintcore]
|to
+
|biguintToDecimal
|operator ~ may cause GC allocation
+
|setting 'length' may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L815 std.stdio]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L1580 std.internal.math.biguintcore]
 
|the
 
|the
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L872 std.stdio]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L165 std.internal.math.biguintcore]
|file
+
|BigUint.opAssign
|operator ~ may cause GC allocation
+
|array literal may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L917 std.stdio]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L166 std.internal.math.biguintcore]
|file
+
|BigUint.opAssign
|operator ~ may cause GC allocation
+
|array literal may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L934 std.stdio]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L167 std.internal.math.biguintcore]
|for
+
|BigUint.opAssign
|operator ~ may cause GC allocation
+
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L168 std.internal.math.biguintcore]
 +
|BigUint.opAssign
 +
|array literal may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1001 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L177 std.internal.math.biguintcore]
|ungetcw
+
|BigUint.opAssign
|operator ~= may cause GC allocation
+
|array literal may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1011 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L181 std.internal.math.biguintcore]
|ungetcw
+
|BigUint.opAssign
|operator ~= may cause GC allocation
+
|array literal may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1094 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L2299 std.internal.math.biguintcore]
|writeExact
+
|blockDivMod
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1341 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L2322 std.internal.math.biguintcore]
|flush
+
|blockDivMod
|setting 'length' may cause GC allocation
+
|'delete' requires GC
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1370 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L265 std.internal.math.biguintcore]
|string
+
|BigUint.char
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1378 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L291 std.internal.math.biguintcore]
|string
+
|BigUint.char
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1382 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L350 std.internal.math.biguintcore]
|string
+
|BigUint.fromHexString
|setting 'length' may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1433 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L382 std.internal.math.biguintcore]
|void
+
|BigUint.fromHexString
|'new' causes GC allocation
+
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L399 std.internal.math.biguintcore]
 +
|BigUint.fromDecimalString
 +
|array literal may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1438 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L403 std.internal.math.biguintcore]
|void
+
|BigUint.fromDecimalString
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1443 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L406 std.internal.math.biguintcore]
|void
+
|BigUint.fromDecimalString
|'new' causes GC allocation
+
|setting 'length' may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1640 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L444 std.internal.math.biguintcore]
|source
+
|BigUint.opShl
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1805 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L556 std.internal.math.biguintcore]
|TreadLine(T)
+
|BigUint.mul
|operator ~= may cause GC allocation
+
|array literal may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1852 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L558 std.internal.math.biguintcore]
|void
+
|BigUint.mul
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2004 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L580 std.internal.math.biguintcore]
|open
+
|BigUint.divInt
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2004 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L627 std.internal.math.biguintcore]
|open
+
|BigUint.modInt
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2004 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L630 std.internal.math.biguintcore]
|open
+
|BigUint.modInt
|operator ~ may cause GC allocation
+
|'delete' requires GC
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2004 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L639 std.internal.math.biguintcore]
|open
+
|BigUint.div
|'new' causes GC allocation
+
|array literal may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2126 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L642 std.internal.math.biguintcore]
|ulong
+
|BigUint.div
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2238 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L653 std.internal.math.biguintcore]
|this()
+
|BigUint.mod
|'new' causes GC allocation
+
|array literal may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2243 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L655 std.internal.math.biguintcore]
|filename
+
|BigUint.mod
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2253 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L656 std.internal.math.biguintcore]
|hFile
+
|BigUint.mod
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2508 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L691 std.internal.math.biguintcore]
|wchar
+
|BigUint.pow
|setting 'length' may cause GC allocation
+
|array literal may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2513 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L791 std.internal.math.biguintcore]
|wchar
+
|BigUint.pow
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2520 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/internal/math/biguintcore.d#L818 std.internal.math.biguintcore]
|wchar
+
|BigUint.pow
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2727 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/json.d#L248 std.json]
|data
+
|JSONValue.assign
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/json.d#L261 std.json]
 +
|JSONValue.assign
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2785 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/json.d#L350 std.json]
|reserve
+
|JSONValue.inout
|setting 'length' may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2864 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/json.d#L366 std.json]
|void
+
|JSONValue.opIndexAssign
|'delete' requires GC
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L428 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/json.d#L376 std.json]
|readExact
+
|JSONValue.opBinary
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L498 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/json.d#L399 std.json]
|readLine
+
|JSONValue.opOpAssign
|setting 'length' may cause GC allocation
 
| ???
 
|-
 
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L505 std.stream]
 
|readLine
 
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L511 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/json.d#L484 std.json]
|readLine
+
|parseJSON
|setting 'length' may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L541 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/json.d#L627 std.json]
|readLineW
+
|parseJSON
|setting 'length' may cause GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L548 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/json.d#L649 std.json]
|readLineW
+
|parseJSON
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L554 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/json.d#L788 std.json]
|readLineW
+
|toJSON
|setting 'length' may cause GC allocation
 
| ???
 
|-
 
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L613 std.stream]
 
|readString
 
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L621 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/json.d#L830 std.json]
|readStringW
+
|toJSON
|'new' causes GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L643 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/mmfile.d#L321 std.mmfile]
|getc
+
|MmFile.filename
|setting 'length' may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L663 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/mmfile.d#L328 std.mmfile]
|getcw
+
|MmFile.filename
|setting 'length' may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L668 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/mmfile.d#L354 std.mmfile]
|getcw
+
|MmFile.filename
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L679 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L1002 std.net.curl]
|ungetc
+
|byLine
|setting 'length' may cause GC allocation
+
|array literal may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L680 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L1016 std.net.curl]
|ungetc
+
|byLine
|operator ~= may cause GC allocation
+
|array literal may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L690 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L1172 std.net.curl]
|ungetcw
+
|template
|setting 'length' may cause GC allocation
+
|using closure causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L691 std.stream]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L1221 std.net.curl]
|ungetcw
+
|template
|operator ~= may cause GC allocation
+
|using closure causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L2436 std.string]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L1277 std.net.curl]
|rightJustify
+
|AsyncLineInputRange
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L2447 std.string]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L1433 std.net.curl]
|rightJustify
+
|AsyncChunkInputRange
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L256 std.string]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L1939 std.net.curl]
|toStringz
+
|decodeString(Char
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L3070 std.string]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L1977 std.net.curl]
|makeTrans
+
|decodeLineInto
|'new' causes GC allocation
+
|setting 'length' may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L3222 std.string]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L1985 std.net.curl]
|format
+
|decodeLineInto
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L3274 std.string]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L1987 std.net.curl]
|sformat
+
|decodeLineInto
|using closure causes GC allocation
+
|setting 'length' may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L3315 std.string]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L2006 std.net.curl]
|sformat
+
|decodeLineInto
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L4237 std.string]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L2089 std.net.curl]
|soundex
+
|HTTP.Impl
|'new' causes GC allocation
+
|using closure causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L4383 std.string]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L2141 std.net.curl]
|abbrev
+
|HTTP.Impl
 
|indexing an associative array may cause GC allocation
 
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L4386 std.string]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L2265 std.net.curl]
|abbrev
+
|HTTP.url
|indexing an associative array may cause GC allocation
+
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L285 std.net.curl]
 +
|download
 +
|using closure causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/syserror.d#L41 std.syserror]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L291 std.net.curl]
|SysError.msg
+
|download
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L222 std.traits]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L2932 std.net.curl]
|std
+
|FTP.url
|indexing an associative array may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L222 std.traits]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L3181 std.net.curl]
|std
+
|SMTP.Impl
|associative array literal may cause GC allocation
+
|using closure causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L222 std.traits]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L327 std.net.curl]
|std
+
|upload
|indexing an associative array may cause GC allocation
+
|using closure causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2202 std.typecons]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L350 std.net.curl]
|NotImplementedError.method
+
|upload
|operator ~ may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L405 std.typecons]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L3782 std.net.curl]
|Tuple.injectNamedFields
+
|Curl.onReceive
|operator ~= may cause GC allocation
+
|using closure causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L408 std.typecons]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L3813 std.net.curl]
|Tuple.injectNamedFields
+
|Curl.onReceiveHeader
|operator ~= may cause GC allocation
+
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L3860 std.net.curl]
 +
|Curl.onSend
 +
|using closure causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L1542 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L3896 std.net.curl]
|genUnrolledSwitchSearch
+
|Curl.onSeek
|operator ~= may cause GC allocation
+
|using closure causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L1551 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L3930 std.net.curl]
|genUnrolledSwitchSearch
+
|Curl.onSocketOption
|operator ~= may cause GC allocation
+
|using closure causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L1557 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L3970 std.net.curl]
|genUnrolledSwitchSearch
+
|Curl.onProgress
|operator ~= may cause GC allocation
+
|using closure causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L1709 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L4095 std.net.curl]
|GcPolicy.alloc
+
|Pool.void
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L1714 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L4118 std.net.curl]
|GcPolicy.realloc
+
|_receiveAsyncChunks
 +
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L4173 std.net.curl]
 +
|_finalizeAsyncChunks
 
|setting 'length' may cause GC allocation
 
|setting 'length' may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L1726 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L4181 std.net.curl]
|GcPolicy.append
+
|_receiveAsyncLines
|operator ~= may cause GC allocation
+
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L4209 std.net.curl]
 +
|_receiveAsyncLines
 +
|setting 'length' may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L1989 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L4260 std.net.curl]
|InversionList.set
+
|_receiveAsyncLines
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L1990 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L4286 std.net.curl]
|InversionList.set
+
|_spawnAsync
|operator ~= may cause GC allocation
+
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L4307 std.net.curl]
 +
|_spawnAsync
 +
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2489 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L4308 std.net.curl]
|InversionList.inverted
+
|_spawnAsync
|array literal may cause GC allocation
+
|setting 'length' may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2494 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L4374 std.net.curl]
|InversionList.inverted
+
|_spawnAsync
|array literal may cause GC allocation
+
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2550 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L590 std.net.curl]
|InversionList.toSourceCode
+
|del
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2551 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L744 std.net.curl]
|InversionList.toSourceCode
+
|_basicHTTP
|operator ~ may cause GC allocation
+
|using closure causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2558 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L765 std.net.curl]
|InversionList.toSourceCode
+
|_basicHTTP
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2562 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L802 std.net.curl]
|InversionList.toSourceCode
+
|_basicHTTP
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2568 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L803 std.net.curl]
|InversionList.toSourceCode
+
|_basicHTTP
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2569 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L806 std.net.curl]
|InversionList.toSourceCode
+
|_basicHTTP
|operator ~= may cause GC allocation
+
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L834 std.net.curl]
 +
|_basicFTP
 +
|using closure causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2572 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/curl.d#L851 std.net.curl]
|InversionList.toSourceCode
+
|_basicFTP
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2610 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L100 std.net.isemail]
|InversionList.toSourceCode
+
|isEmail
|operator ~ may cause GC allocation
+
|associative array literal may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2612 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L101 std.net.isemail]
|InversionList.toSourceCode
+
|isEmail
|operator ~ may cause GC allocation
+
|associative array literal may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2614 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L101 std.net.isemail]
|InversionList.toSourceCode
+
|isEmail
|operator ~= may cause GC allocation
+
|array literal may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2617 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L119 std.net.isemail]
|InversionList.toSourceCode
+
|isEmail
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2620 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L124 std.net.isemail]
|InversionList.toSourceCode
+
|isEmail
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2622 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L128 std.net.isemail]
|InversionList.toSourceCode
+
|isEmail
|operator ~ may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2631 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L134 std.net.isemail]
|InversionList.toSourceCode
+
|isEmail
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2633 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L140 std.net.isemail]
|InversionList.toSourceCode
+
|isEmail
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2936 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L146 std.net.isemail]
|InversionList.dropUpTo
+
|isEmail
|array literal may cause GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2973 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L146 std.net.isemail]
|InversionList.skipUpTo
+
|isEmail
|array literal may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L5728 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L148 std.net.isemail]
|compressTo
+
|isEmail
|operator ~= may cause GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L5731 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L149 std.net.isemail]
|compressTo
+
|isEmail
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L5732 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L149 std.net.isemail]
|compressTo
+
|isEmail
|operator ~= may cause GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L5737 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L152 std.net.isemail]
|compressTo
+
|isEmail
|operator ~= may cause GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L5738 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L158 std.net.isemail]
|compressTo
+
|isEmail
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L5739 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L161 std.net.isemail]
|compressTo
+
|isEmail
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L5979 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L161 std.net.isemail]
|isPrettyPropertyName
+
|isEmail
|array literal may cause GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L6188 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L162 std.net.isemail]
|unicode.loadAny
+
|isEmail
|operator ~ may cause GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L6188 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L162 std.net.isemail]
|unicode.loadAny
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L6188 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L165 std.net.isemail]
|unicode.loadAny
+
|isEmail
|operator ~ may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L6188 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L170 std.net.isemail]
|unicode.loadAny
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L6188 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L178 std.net.isemail]
|unicode.loadAny
+
|isEmail
|operator ~ may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L8154 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L183 std.net.isemail]
|encodeTo
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L8302 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L189 std.net.isemail]
|toCaseInPlaceAlloc.toCaseInPlaceAlloc
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L851 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L1920 std.net.isemail]
|MultiArray.sizes
+
|grep
|'new' causes GC allocation
+
|using closure causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L885 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L197 std.net.isemail]
|MultiArray.n
+
|isEmail
|setting 'length' may cause GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L918 std.uni]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L198 std.net.isemail]
|MultiArray.n
+
|isEmail
|setting 'length' may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uri.d#L120 std.uri]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L201 std.net.isemail]
|URI_Encode
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uri.d#L126 std.uri]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L203 std.net.isemail]
|URI_Encode
+
|isEmail
|'new' causes GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uri.d#L191 std.uri]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L204 std.net.isemail]
|URI_Encode
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uri.d#L200 std.uri]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L208 std.net.isemail]
|URI_Encode
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uri.d#L206 std.uri]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L211 std.net.isemail]
|URI_Encode
+
|isEmail
|'new' causes GC allocation
+
|array literal may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uri.d#L50 std.uri]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L224 std.net.isemail]
|URIException.nothrow
+
|isEmail
|operator ~ may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1115 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L228 std.net.isemail]
|decodeImpl
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1230 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L232 std.net.isemail]
|decodeImpl
+
|isEmail
|'new' causes GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1284 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L232 std.net.isemail]
|decodeImpl
+
|isEmail
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1576 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L243 std.net.isemail]
|encode
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1595 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L245 std.net.isemail]
|encode
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1631 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L245 std.net.isemail]
|encode
+
|isEmail
|'new' causes GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1646 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L246 std.net.isemail]
|encode
+
|isEmail
|'new' causes GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1685 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L246 std.net.isemail]
|encode
+
|isEmail
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1702 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L257 std.net.isemail]
|encode
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1722 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L262 std.net.isemail]
|encode
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1724 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L266 std.net.isemail]
|encode
+
|isEmail
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1785 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L272 std.net.isemail]
|encode
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1788 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L276 std.net.isemail]
|encode
+
|isEmail
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1797 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L281 std.net.isemail]
|encode
+
|isEmail
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1802 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L289 std.net.isemail]
|encode
+
|isEmail
|'new' causes GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1834 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L289 std.net.isemail]
|encode
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1837 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L290 std.net.isemail]
|encode
+
|isEmail
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L199 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L290 std.net.isemail]
|strideImpl
+
|isEmail
|'new' causes GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2096 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L294 std.net.isemail]
|toUTF8
+
|isEmail
|setting 'length' may cause GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2105 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L298 std.net.isemail]
|toUTF8
+
|isEmail
|setting 'length' may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2122 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L300 std.net.isemail]
|toUTF8
+
|isEmail
|setting 'length' may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2131 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L300 std.net.isemail]
|toUTF8
+
|isEmail
|setting 'length' may cause GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2174 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L301 std.net.isemail]
|toUTF16
+
|isEmail
|setting 'length' may cause GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2175 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L301 std.net.isemail]
|toUTF16
+
|isEmail
|setting 'length' may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2182 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L302 std.net.isemail]
|toUTF16
+
|isEmail
|operator ~= may cause GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2207 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L306 std.net.isemail]
|wstring
+
|isEmail
|setting 'length' may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2208 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L314 std.net.isemail]
|wstring
+
|isEmail
|setting 'length' may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2229 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L319 std.net.isemail]
|toUTF32
+
|isEmail
|setting 'length' may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2250 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L324 std.net.isemail]
|toUTF32
+
|isEmail
|setting 'length' may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2399 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L328 std.net.isemail]
|toUTFzImpl
+
|isEmail
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L316 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L340 std.net.isemail]
|strideBack
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L71 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L344 std.net.isemail]
|UTFException.msg
+
|isEmail
|operator ~ may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L84 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L348 std.net.isemail]
|UTFException.string
+
|isEmail
|operator ~= may cause GC allocation
+
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L842 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L348 std.net.isemail]
|toUCSindex
+
|isEmail
 
|'new' causes GC allocation
 
|'new' causes GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L88 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L358 std.net.isemail]
|UTFException.string
+
|isEmail
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L89 std.utf]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L363 std.net.isemail]
|UTFException.string
+
|isEmail
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uuid.d#L335 std.uuid]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L369 std.net.isemail]
|****
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uuid.d#L340 std.uuid]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L371 std.net.isemail]
|****
+
|isEmail
|'new' causes GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uuid.d#L353 std.uuid]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L371 std.net.isemail]
|****
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uuid.d#L371 std.uuid]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L372 std.net.isemail]
|****
+
|isEmail
|'new' causes GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uuid.d#L382 std.uuid]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L372 std.net.isemail]
|****
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L1416 std.variant]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L385 std.net.isemail]
|VariantException
+
|isEmail
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L395 std.net.isemail]
 +
|isEmail
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L236 std.variant]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L399 std.net.isemail]
|VariantN.handler
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L456 std.variant]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L402 std.net.isemail]
|VariantN.handler
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L477 std.variant]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L414 std.net.isemail]
|VariantN.handler
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L420 std.net.isemail]
|VariantN.handler
+
|isEmail
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L428 std.net.isemail]
|VariantN.handler
+
|isEmail
|array literal may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L431 std.net.isemail]
|VariantN.handler
+
|isEmail
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L494 std.variant]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L436 std.net.isemail]
|VariantN.handler
+
|isEmail
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L500 std.variant]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L439 std.net.isemail]
|VariantN.handler
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L510 std.variant]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L442 std.net.isemail]
|VariantN.handler
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L791 std.variant]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L445 std.net.isemail]
|VariantN.get
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L916 std.variant]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L450 std.net.isemail]
|VariantN.value
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1055 std.xml]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L452 std.net.isemail]
|Tag.string
+
|isEmail
|operator ~ may cause GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1059 std.xml]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L452 std.net.isemail]
|Tag.string
+
|isEmail
|operator ~ may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1067 std.xml]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L453 std.net.isemail]
|Tag.string
+
|isEmail
|indexing an associative array may cause GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1071 std.xml]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L453 std.net.isemail]
|Tag.string
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1075 std.xml]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L460 std.net.isemail]
|Tag.string
+
|isEmail
|setting 'length' may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1079 std.xml]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L461 std.net.isemail]
|Tag.string
+
|isEmail
|setting 'length' may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1080 std.xml]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L470 std.net.isemail]
|Tag.string
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1158 std.xml]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L474 std.net.isemail]
|Tag.const
+
|isEmail
|operator ~ may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1160 std.xml]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L475 std.net.isemail]
|Tag.const
+
|isEmail
 
|operator ~= may cause GC allocation
 
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1164 std.xml]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L485 std.net.isemail]
|Tag.const
+
|isEmail
|operator ~ may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1166 std.xml]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L490 std.net.isemail]
|Tag.const
+
|isEmail
|operator ~ may cause GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1168 std.xml]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L492 std.net.isemail]
|Tag.const
+
|isEmail
|operator ~ may cause GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1228 std.xml]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L492 std.net.isemail]
|Comment.content
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1279 std.xml]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L493 std.net.isemail]
|Comment.string
+
|isEmail
|operator ~ may cause GC allocation
+
|indexing an associative array may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1307 std.xml]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L493 std.net.isemail]
|CData.content
+
|isEmail
|'new' causes GC allocation
+
|operator ~= may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1358 std.xml]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L494 std.net.isemail]
|CData.string
+
|isEmail
|operator ~ may cause GC allocation
+
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L494 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L503 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L511 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L515 std.net.isemail]
 +
|isEmail
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L515 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L516 std.net.isemail]
 +
|isEmail
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L516 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L519 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L520 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L526 std.net.isemail]
 +
|isEmail
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L526 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L527 std.net.isemail]
 +
|isEmail
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L527 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L537 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L540 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L542 std.net.isemail]
 +
|isEmail
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L542 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L543 std.net.isemail]
 +
|isEmail
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L543 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L552 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L555 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L559 std.net.isemail]
 +
|isEmail
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L566 std.net.isemail]
 +
|isEmail
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L566 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L567 std.net.isemail]
 +
|isEmail
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L567 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L572 std.net.isemail]
 +
|isEmail
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L572 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L573 std.net.isemail]
 +
|isEmail
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L573 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L578 std.net.isemail]
 +
|isEmail
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L578 std.net.isemail]
 +
|isEmail
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L586 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L596 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L605 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L609 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L611 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L621 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L626 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L635 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L642 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L653 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L663 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L678 std.net.isemail]
 +
|isEmail
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L678 std.net.isemail]
 +
|isEmail
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L688 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L691 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L694 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L697 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L700 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L702 std.net.isemail]
 +
|isEmail
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L703 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L706 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L709 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L711 std.net.isemail]
 +
|isEmail
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L712 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L714 std.net.isemail]
 +
|isEmail
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L714 std.net.isemail]
 +
|isEmail
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L714 std.net.isemail]
 +
|isEmail
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L714 std.net.isemail]
 +
|isEmail
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L716 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L719 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L732 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L734 std.net.isemail]
 +
|isEmail
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L735 std.net.isemail]
 +
|isEmail
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L744 std.net.isemail]
 +
|isEmail
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L94 std.net.isemail]
 +
|isEmail
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/net/isemail.d#L96 std.net.isemail]
 +
|isEmail
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/numeric.d#L2673 std.numeric]
 +
|Fft.memSpace
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/outbuffer.d#L84 std.outbuffer]
 +
|OutBuffer.reserve
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L1206 std.parallelism]
 +
|TaskPool.abstractPutNoSync
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L1232 std.parallelism]
 +
|TaskPool.abstractPutGroupNoSync
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L1388 std.parallelism]
 +
|TaskPool.task
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L1445 std.parallelism]
 +
|TaskPool.nWorkers
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L1446 std.parallelism]
 +
|TaskPool.nWorkers
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L1447 std.parallelism]
 +
|TaskPool.nWorkers
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L1448 std.parallelism]
 +
|TaskPool.nWorkers
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L1450 std.parallelism]
 +
|TaskPool.nWorkers
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L1453 std.parallelism]
 +
|TaskPool.nWorkers
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L1640 std.parallelism]
 +
|****
 +
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L1894 std.parallelism]
 +
|****
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L1951 std.parallelism]
 +
|****
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L1952 std.parallelism]
 +
|****
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L1956 std.parallelism]
 +
|****
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L2084 std.parallelism]
 +
|****
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L2162 std.parallelism]
 +
|TaskPool.asyncBuf
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L2163 std.parallelism]
 +
|TaskPool.asyncBuf
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L2265 std.parallelism]
 +
|TaskPool.asyncBuf
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L2426 std.parallelism]
 +
|****
 +
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L2613 std.parallelism]
 +
|****
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L2850 std.parallelism]
 +
|TaskPool.WorkerLocalStorage
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L3278 std.parallelism]
 +
|taskPool
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L3386 std.parallelism]
 +
|)
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L3467 std.parallelism]
 +
|foreachErr
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L3853 std.parallelism]
 +
|RoundRobinBuffer.)
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L3857 std.parallelism]
 +
|RoundRobinBuffer.)
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L742 std.parallelism]
 +
|Task.executeInNewThread
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L748 std.parallelism]
 +
|Task.executeInNewThread
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L840 std.parallelism]
 +
|task
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L877 std.parallelism]
 +
|task
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/parallelism.d#L904 std.parallelism]
 +
|task
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L1001 std.path]
 +
|****
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L1190 std.path]
 +
|buildNormalizedPath
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L1234 std.path]
 +
|buildNormalizedPath
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L1995 std.path]
 +
|absolutePath
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L2086 std.path]
 +
|relativePath
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L2109 std.path]
 +
|relativePath
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L2110 std.path]
 +
|relativePath
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L2117 std.path]
 +
|relativePath
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L2118 std.path]
 +
|relativePath
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L2473 std.path]
 +
|globMatch
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L2874 std.path]
 +
|expandTilde
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L2913 std.path]
 +
|expandTilde
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L2918 std.path]
 +
|expandTilde
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L843 std.path]
 +
|setExtension
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L845 std.path]
 +
|setExtension
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L861 std.path]
 +
|setExtension
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L862 std.path]
 +
|setExtension
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L867 std.path]
 +
|setExtension
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L872 std.path]
 +
|setExtension
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L931 std.path]
 +
|defaultExtension
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L933 std.path]
 +
|defaultExtension
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/path.d#L992 std.path]
 +
|****
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L1142 std.process]
 +
|Pid.returns
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L1501 std.process]
 +
|pipe
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L1505 std.process]
 +
|pipe
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L1509 std.process]
 +
|pipe
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L1714 std.process]
 +
|pipeProcessImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L1728 std.process]
 +
|pipeProcessImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L1895 std.process]
 +
|ProcessPipes.stdin
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L1911 std.process]
 +
|ProcessPipes.stdout
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L1927 std.process]
 +
|ProcessPipes.stderr
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L2134 std.process]
 +
|ProcessException.newFromErrno
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L2135 std.process]
 +
|ProcessException.newFromErrno
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L2206 std.process]
 +
|TestScript.code
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L2207 std.process]
 +
|TestScript.code
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L2236 std.process]
 +
|uniqueTempPath
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L2371 std.process]
 +
|escapeWindowsShellCommand
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L2374 std.process]
 +
|escapeWindowsShellCommand
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L2401 std.process]
 +
|escapeShellArguments
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L2405 std.process]
 +
|escapeShellArguments
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L2445 std.process]
 +
|charAllocator
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L2779 std.process]
 +
|environment.opIndex
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L2840 std.process]
 +
|environment.Exception
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L2900 std.process]
 +
|environment.toAA
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L3220 std.process]
 +
|use
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L3221 std.process]
 +
|use
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L3398 std.process]
 +
|execvpe_
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L3491 std.process]
 +
|shell
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L360 std.process]
 +
|spawnProcessImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L365 std.process]
 +
|spawnProcessImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L371 std.process]
 +
|spawnProcessImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L375 std.process]
 +
|spawnProcessImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L399 std.process]
 +
|spawnProcessImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L399 std.process]
 +
|spawnProcessImpl
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L481 std.process]
 +
|spawnProcessImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L593 std.process]
 +
|createEnv
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/process.d#L596 std.process]
 +
|createEnv
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/random.d#L1730 std.random]
 +
|uniformDistribution
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/random.d#L1961 std.random]
 +
|RandomCover.if
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/random.d#L1973 std.random]
 +
|RandomCover.if
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/random.d#L625 std.random]
 +
|****
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3009 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3009 std.range]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3009 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3009 std.range]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3009 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3009 std.range]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3009 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3009 std.range]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3009 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3009 std.range]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3009 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3009 std.range]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3009 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3009 std.range]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3009 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3009 std.range]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3009 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3012 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3026 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3026 std.range]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3026 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3026 std.range]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3026 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3026 std.range]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3026 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3026 std.range]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3026 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3026 std.range]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3026 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3026 std.range]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3026 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3026 std.range]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3026 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3028 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
 +
|roundRobin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3040 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L3045 std.range]
 +
|roundRobin
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L4287 std.range]
 +
|Repeat.opSlice
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L4444 std.range]
 +
|Cycle.if
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L4559 std.range]
 +
|Cycle.opSlice
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L4843 std.range]
 +
|policy
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L5315 std.range]
 +
|lockstepMixin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L5316 std.range]
 +
|lockstepMixin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L5321 std.range]
 +
|lockstepMixin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L5322 std.range]
 +
|lockstepMixin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L5323 std.range]
 +
|lockstepMixin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L5324 std.range]
 +
|lockstepMixin
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L686 std.range]
 +
|put
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L746 std.range]
 +
|putChar
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L7579 std.range]
 +
|OnlyResult.opIndex
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L7599 std.range]
 +
|OnlyResult.opSlice
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L7643 std.range]
 +
|OnlyResult.opIndex
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L7659 std.range]
 +
|OnlyResult.opSlice
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L7689 std.range]
 +
|OnlyResult.opIndex
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L7702 std.range]
 +
|OnlyResult.opSlice
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L7971 std.range]
 +
|enumerate
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L8564 std.range]
 +
|putMethods
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L8564 std.range]
 +
|putMethods
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L8564 std.range]
 +
|putMethods
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L8650 std.range]
 +
|InputRangeObject.if
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L8745 std.range]
 +
|inputRangeObject
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/range.d#L8765 std.range]
 +
|outputRangeObject.E
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1034 std.socket]
 +
|getAddressInfoImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1045 std.socket]
 +
|getAddressInfoImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1052 std.socket]
 +
|getAddressInfoImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1100 std.socket]
 +
|serviceToPort
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1135 std.socket]
 +
|getAddress
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1152 std.socket]
 +
|getAddress
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1154 std.socket]
 +
|getAddress
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1159 std.socket]
 +
|getAddress
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1159 std.socket]
 +
|getAddress
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1239 std.socket]
 +
|parseAddress
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1240 std.socket]
 +
|parseAddress
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1346 std.socket]
 +
|Address.toHostString
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1362 std.socket]
 +
|Address.toHostString
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1362 std.socket]
 +
|Address.toHostString
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1367 std.socket]
 +
|Address.toHostString
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1367 std.socket]
 +
|Address.toHostString
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1377 std.socket]
 +
|Address.toServiceString
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1383 std.socket]
 +
|Address.toServiceString
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1383 std.socket]
 +
|Address.toServiceString
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1388 std.socket]
 +
|Address.toServiceString
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1388 std.socket]
 +
|Address.toServiceString
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1451 std.socket]
 +
|Address.string
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1453 std.socket]
 +
|Address.string
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1597 std.socket]
 +
|InternetAddress.char
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1600 std.socket]
 +
|InternetAddress.char
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1664 std.socket]
 +
|InternetAddress.string
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1874 std.socket]
 +
|Internet6Address.parse
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L1942 std.socket]
 +
|if
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2164 std.socket]
 +
|SocketSet.SocketSet
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2173 std.socket]
 +
|SocketSet.SocketSet
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2230 std.socket]
 +
|SocketSet.add
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2231 std.socket]
 +
|SocketSet.add
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L256 std.socket]
 +
|SocketOSException.msg
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2592 std.socket]
 +
|Socket.af
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2612 std.socket]
 +
|Socket.af
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2691 std.socket]
 +
|Socket.blocking
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2713 std.socket]
 +
|Socket.bind
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2745 std.socket]
 +
|Socket.connect
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2757 std.socket]
 +
|Socket.listen
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2771 std.socket]
 +
|Socket.Socket
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2783 std.socket]
 +
|Socket.accept
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2846 std.socket]
 +
|Socket.hostName
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2856 std.socket]
 +
|Socket.remoteAddress
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2858 std.socket]
 +
|Socket.remoteAddress
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2869 std.socket]
 +
|Socket.localAddress
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L2871 std.socket]
 +
|Socket.localAddress
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3058 std.socket]
 +
|Socket.receiveFrom
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3081 std.socket]
 +
|Socket.getOption
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3081 std.socket]
 +
|Socket.getOption
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3106 std.socket]
 +
|Socket.setOption
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3168 std.socket]
 +
|Socket.setOption
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3168 std.socket]
 +
|Socket.setOption
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3170 std.socket]
 +
|Socket.setOption
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3362 std.socket]
 +
|Socket.select
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3386 std.socket]
 +
|Socket.Address
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3390 std.socket]
 +
|Socket.Address
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3394 std.socket]
 +
|Socket.Address
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3471 std.socket]
 +
|socketPair
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L3475 std.socket]
 +
|socketPair
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L484 std.socket]
 +
|Protocol.populate
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L584 std.socket]
 +
|Service.populate
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L723 std.socket]
 +
|InternetHost.validHostent
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L743 std.socket]
 +
|InternetHost.populate
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socket.d#L764 std.socket]
 +
|InternetHost.populate
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/socketstream.d#L128 std.socketstream]
 +
|SocketStream.SocketStream
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L1009 std.stdio]
 +
|)
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L1042 std.stdio]
 +
|file
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L1073 std.stdio]
 +
|the
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L1394 std.stdio]
 +
|every
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L1398 std.stdio]
 +
|every
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L1419 std.stdio]
 +
|every
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L1423 std.stdio]
 +
|every
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L2064 std.stdio]
 +
|file
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L2087 std.stdio]
 +
|file
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L2094 std.stdio]
 +
|file
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L2663 std.stdio]
 +
|LockingTextReader.front
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L2669 std.stdio]
 +
|LockingTextReader.popFront
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L3330 std.stdio]
 +
|lines.f
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L3351 std.stdio]
 +
|lines.f
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L3355 std.stdio]
 +
|lines.f
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L3536 std.stdio]
 +
|ChunksImpl.f
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L3547 std.stdio]
 +
|ChunksImpl.f
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L3548 std.stdio]
 +
|ChunksImpl.f
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L3633 std.stdio]
 +
|with
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L3639 std.stdio]
 +
|with
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L3645 std.stdio]
 +
|with
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L3919 std.stdio]
 +
|readlnImpl
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L3923 std.stdio]
 +
|readlnImpl
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L3947 std.stdio]
 +
|readlnImpl
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L3953 std.stdio]
 +
|readlnImpl
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L4087 std.stdio]
 +
|readlnImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L4090 std.stdio]
 +
|readlnImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L4108 std.stdio]
 +
|readlnImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L4111 std.stdio]
 +
|readlnImpl
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L421 std.stdio]
 +
|_popen
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L634 std.stdio]
 +
|to
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L641 std.stdio]
 +
|to
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L815 std.stdio]
 +
|the
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L872 std.stdio]
 +
|file
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L917 std.stdio]
 +
|file
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stdio.d#L934 std.stdio]
 +
|for
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1001 std.stream]
 +
|ungetcw
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1011 std.stream]
 +
|ungetcw
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1094 std.stream]
 +
|writeExact
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1341 std.stream]
 +
|flush
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1370 std.stream]
 +
|string
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1378 std.stream]
 +
|string
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1382 std.stream]
 +
|string
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1433 std.stream]
 +
|void
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1438 std.stream]
 +
|void
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1443 std.stream]
 +
|void
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1640 std.stream]
 +
|source
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1805 std.stream]
 +
|TreadLine(T)
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L1852 std.stream]
 +
|void
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2004 std.stream]
 +
|open
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2004 std.stream]
 +
|open
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2004 std.stream]
 +
|open
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2126 std.stream]
 +
|ulong
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2238 std.stream]
 +
|this()
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2243 std.stream]
 +
|filename
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2253 std.stream]
 +
|hFile
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2508 std.stream]
 +
|wchar
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2513 std.stream]
 +
|wchar
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2520 std.stream]
 +
|wchar
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2727 std.stream]
 +
|data
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2785 std.stream]
 +
|reserve
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L2864 std.stream]
 +
|void
 +
|'delete' requires GC
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L428 std.stream]
 +
|readExact
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L498 std.stream]
 +
|readLine
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L505 std.stream]
 +
|readLine
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L511 std.stream]
 +
|readLine
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L541 std.stream]
 +
|readLineW
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L548 std.stream]
 +
|readLineW
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L554 std.stream]
 +
|readLineW
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L613 std.stream]
 +
|readString
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L621 std.stream]
 +
|readStringW
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L643 std.stream]
 +
|getc
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L663 std.stream]
 +
|getcw
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L668 std.stream]
 +
|getcw
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L679 std.stream]
 +
|ungetc
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L680 std.stream]
 +
|ungetc
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L690 std.stream]
 +
|ungetcw
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/stream.d#L691 std.stream]
 +
|ungetcw
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L2401 std.string]
 +
|leftJustify
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L2412 std.string]
 +
|leftJustify
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L2436 std.string]
 +
|rightJustify
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L2447 std.string]
 +
|rightJustify
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L2471 std.string]
 +
|center
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L2484 std.string]
 +
|center
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L2552 std.string]
 +
|detab
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L2553 std.string]
 +
|detab
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L256 std.string]
 +
|toStringz
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L2560 std.string]
 +
|detab
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L2636 std.string]
 +
|entab
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L2637 std.string]
 +
|entab
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L2652 std.string]
 +
|entab
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L2681 std.string]
 +
|entab
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L2982 std.string]
 +
|translateImpl
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L3051 std.string]
 +
|translate
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L3070 std.string]
 +
|makeTrans
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L3222 std.string]
 +
|format
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L3274 std.string]
 +
|sformat
 +
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L3315 std.string]
 +
|sformat
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L3711 std.string]
 +
|succ
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L4237 std.string]
 +
|soundex
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L4383 std.string]
 +
|abbrev
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L4386 std.string]
 +
|abbrev
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L4527 std.string]
 +
|wrap
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L4528 std.string]
 +
|wrap
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L4542 std.string]
 +
|wrap
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L4543 std.string]
 +
|wrap
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L4548 std.string]
 +
|wrap
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L4551 std.string]
 +
|wrap
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L4571 std.string]
 +
|wrap
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L4572 std.string]
 +
|wrap
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L4575 std.string]
 +
|wrap
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L4576 std.string]
 +
|wrap
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L4578 std.string]
 +
|wrap
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/string.d#L4666 std.string]
 +
|outdent
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/syserror.d#L41 std.syserror]
 +
|SysError.msg
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L1903 std.traits]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L1906 std.traits]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L1908 std.traits]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L1913 std.traits]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L1915 std.traits]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L1918 std.traits]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L1922 std.traits]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L1924 std.traits]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L1926 std.traits]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L1928 std.traits]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L1931 std.traits]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L1933 std.traits]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L1937 std.traits]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L1939 std.traits]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L1941 std.traits]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L1943 std.traits]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L1953 std.traits]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L222 std.traits]
 +
|std
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L222 std.traits]
 +
|std
 +
|associative array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L5568 std.traits]
 +
|isExpressionTuple.if
 +
|associative array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L588 std.traits]
 +
|fqnType.parametersTypeString
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L589 std.traits]
 +
|fqnType.parametersTypeString
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/traits.d#L594 std.traits]
 +
|fqnType.parametersTypeString
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L1424 std.typecons]
 +
|alignForSize
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L1424 std.typecons]
 +
|alignForSize
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L1424 std.typecons]
 +
|alignForSize
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L1424 std.typecons]
 +
|alignForSize
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L1424 std.typecons]
 +
|alignForSize
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L1424 std.typecons]
 +
|alignForSize
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L1424 std.typecons]
 +
|alignForSize
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L1429 std.typecons]
 +
|alignForSize
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L151 std.typecons]
 +
|if
 +
|'delete' requires GC
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2202 std.typecons]
 +
|NotImplementedError.method
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2749 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2756 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2773 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2795 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2815 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2816 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2826 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2827 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2828 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2829 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2830 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2839 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2840 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2841 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2842 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2849 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2850 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2859 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2866 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2869 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2872 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2881 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2882 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2884 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2906 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2909 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2910 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2911 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2912 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2915 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2918 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2929 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2931 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2935 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2951 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L2952 std.typecons]
 +
|****
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L3066 std.typecons]
 +
|wrap.wrap(Source)
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L3168 std.typecons]
 +
|wrap.wrap(Source)
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L3169 std.typecons]
 +
|wrap.wrap(Source)
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L3170 std.typecons]
 +
|wrap.wrap(Source)
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L3171 std.typecons]
 +
|wrap.wrap(Source)
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L3172 std.typecons]
 +
|wrap.wrap(Source)
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L3173 std.typecons]
 +
|wrap.wrap(Source)
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L3180 std.typecons]
 +
|wrap.wrap(Source)
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L3183 std.typecons]
 +
|wrap.wrap(Source)
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L3184 std.typecons]
 +
|wrap.wrap(Source)
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L405 std.typecons]
 +
|Tuple.injectNamedFields
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/typecons.d#L408 std.typecons]
 +
|Tuple.injectNamedFields
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L1542 std.uni]
 +
|genUnrolledSwitchSearch
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L1551 std.uni]
 +
|genUnrolledSwitchSearch
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L1557 std.uni]
 +
|genUnrolledSwitchSearch
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L1709 std.uni]
 +
|GcPolicy.alloc
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L1714 std.uni]
 +
|GcPolicy.realloc
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L1726 std.uni]
 +
|GcPolicy.append
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L1989 std.uni]
 +
|InversionList.set
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L1990 std.uni]
 +
|InversionList.set
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2489 std.uni]
 +
|InversionList.inverted
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2494 std.uni]
 +
|InversionList.inverted
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2550 std.uni]
 +
|InversionList.toSourceCode
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2551 std.uni]
 +
|InversionList.toSourceCode
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2558 std.uni]
 +
|InversionList.toSourceCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2562 std.uni]
 +
|InversionList.toSourceCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2568 std.uni]
 +
|InversionList.toSourceCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2569 std.uni]
 +
|InversionList.toSourceCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2572 std.uni]
 +
|InversionList.toSourceCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2610 std.uni]
 +
|InversionList.toSourceCode
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2612 std.uni]
 +
|InversionList.toSourceCode
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2614 std.uni]
 +
|InversionList.toSourceCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2617 std.uni]
 +
|InversionList.toSourceCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2620 std.uni]
 +
|InversionList.toSourceCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2622 std.uni]
 +
|InversionList.toSourceCode
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2631 std.uni]
 +
|InversionList.toSourceCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2633 std.uni]
 +
|InversionList.toSourceCode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2936 std.uni]
 +
|InversionList.dropUpTo
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L2973 std.uni]
 +
|InversionList.skipUpTo
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L4648 std.uni]
 +
|Utf8Matcher.badEncoding
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L4733 std.uni]
 +
|Utf8Matcher.template
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L4739 std.uni]
 +
|Utf8Matcher.template
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L4741 std.uni]
 +
|Utf8Matcher.template
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L4927 std.uni]
 +
|Utf16Matcher.badEncoding
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L5428 std.uni]
 +
|toDelegate
 +
|using closure causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L5728 std.uni]
 +
|compressTo
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L5731 std.uni]
 +
|compressTo
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L5732 std.uni]
 +
|compressTo
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L5737 std.uni]
 +
|compressTo
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L5738 std.uni]
 +
|compressTo
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L5739 std.uni]
 +
|compressTo
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L5979 std.uni]
 +
|isPrettyPropertyName
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L6010 std.uni]
 +
|SetSearcher.opCall
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L6010 std.uni]
 +
|SetSearcher.opCall
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L6188 std.uni]
 +
|unicode.loadAny
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L6188 std.uni]
 +
|unicode.loadAny
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L7649 std.uni]
 +
|enum
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L7654 std.uni]
 +
|enum
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L7656 std.uni]
 +
|enum
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L7705 std.uni]
 +
|enum
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L7707 std.uni]
 +
|enum
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L8154 std.uni]
 +
|encodeTo
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L8302 std.uni]
 +
|toCaseInPlaceAlloc.toCaseInPlaceAlloc
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L851 std.uni]
 +
|MultiArray.sizes
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L885 std.uni]
 +
|MultiArray.n
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uni.d#L918 std.uni]
 +
|MultiArray.n
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uri.d#L120 std.uri]
 +
|URI_Encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uri.d#L126 std.uri]
 +
|URI_Encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uri.d#L191 std.uri]
 +
|URI_Encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uri.d#L200 std.uri]
 +
|URI_Encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uri.d#L206 std.uri]
 +
|URI_Encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uri.d#L250 std.uri]
 +
|URI_Decode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uri.d#L256 std.uri]
 +
|URI_Decode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uri.d#L274 std.uri]
 +
|URI_Decode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uri.d#L276 std.uri]
 +
|URI_Decode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uri.d#L290 std.uri]
 +
|URI_Decode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uri.d#L294 std.uri]
 +
|URI_Decode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uri.d#L303 std.uri]
 +
|URI_Decode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uri.d#L308 std.uri]
 +
|URI_Decode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uri.d#L310 std.uri]
 +
|URI_Decode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uri.d#L313 std.uri]
 +
|URI_Decode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uri.d#L318 std.uri]
 +
|URI_Decode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uri.d#L50 std.uri]
 +
|URIException.nothrow
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1115 std.utf]
 +
|decodeImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1132 std.utf]
 +
|decodeImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1141 std.utf]
 +
|decodeImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1230 std.utf]
 +
|decodeImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1232 std.utf]
 +
|decodeImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1284 std.utf]
 +
|decodeImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1290 std.utf]
 +
|decodeImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1312 std.utf]
 +
|decodeImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1314 std.utf]
 +
|decodeImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1318 std.utf]
 +
|decodeImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1335 std.utf]
 +
|decodeImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1337 std.utf]
 +
|decodeImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1342 std.utf]
 +
|decodeImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1366 std.utf]
 +
|decodeImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1370 std.utf]
 +
|decodeImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1576 std.utf]
 +
|encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1595 std.utf]
 +
|encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1631 std.utf]
 +
|encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1646 std.utf]
 +
|encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1685 std.utf]
 +
|encode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1702 std.utf]
 +
|encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1722 std.utf]
 +
|encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1724 std.utf]
 +
|encode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1785 std.utf]
 +
|encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1788 std.utf]
 +
|encode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1797 std.utf]
 +
|encode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1802 std.utf]
 +
|encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1834 std.utf]
 +
|encode
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L1837 std.utf]
 +
|encode
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L199 std.utf]
 +
|strideImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2096 std.utf]
 +
|toUTF8
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2105 std.utf]
 +
|toUTF8
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2122 std.utf]
 +
|toUTF8
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2131 std.utf]
 +
|toUTF8
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2174 std.utf]
 +
|toUTF16
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2175 std.utf]
 +
|toUTF16
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2182 std.utf]
 +
|toUTF16
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2207 std.utf]
 +
|wstring
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2208 std.utf]
 +
|wstring
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2229 std.utf]
 +
|toUTF32
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2250 std.utf]
 +
|toUTF32
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2340 std.utf]
 +
|toUTFzImpl
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2399 std.utf]
 +
|toUTFzImpl
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2657 std.utf]
 +
|nothrow
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2675 std.utf]
 +
|nothrow
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L2678 std.utf]
 +
|nothrow
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L316 std.utf]
 +
|strideBack
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L340 std.utf]
 +
|strideBack
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L71 std.utf]
 +
|UTFException.msg
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L84 std.utf]
 +
|UTFException.string
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L842 std.utf]
 +
|toUCSindex
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L844 std.utf]
 +
|toUCSindex
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L88 std.utf]
 +
|UTFException.string
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/utf.d#L89 std.utf]
 +
|UTFException.string
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uuid.d#L1176 std.uuid]
 +
|parseUUID
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uuid.d#L1182 std.uuid]
 +
|parseUUID
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uuid.d#L1190 std.uuid]
 +
|parseUUID
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uuid.d#L335 std.uuid]
 +
|****
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uuid.d#L340 std.uuid]
 +
|****
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uuid.d#L353 std.uuid]
 +
|****
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uuid.d#L371 std.uuid]
 +
|****
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/uuid.d#L382 std.uuid]
 +
|****
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L1387 std.variant]
 +
|variantArray
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L1416 std.variant]
 +
|VariantException
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L2193 std.variant]
 +
|visitImpl
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L236 std.variant]
 +
|VariantN.handler
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L371 std.variant]
 +
|VariantN.handler
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L436 std.variant]
 +
|VariantN.handler
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L451 std.variant]
 +
|VariantN.handler
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L456 std.variant]
 +
|VariantN.handler
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L471 std.variant]
 +
|VariantN.handler
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L477 std.variant]
 +
|VariantN.handler
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
 +
|VariantN.handler
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
 +
|VariantN.handler
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
 +
|VariantN.handler
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
 +
|VariantN.handler
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
 +
|VariantN.handler
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
 +
|VariantN.handler
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
 +
|VariantN.handler
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
 +
|VariantN.handler
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
 +
|VariantN.handler
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
 +
|VariantN.handler
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
 +
|VariantN.handler
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
 +
|VariantN.handler
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
 +
|VariantN.handler
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
 +
|VariantN.handler
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
 +
|VariantN.handler
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
 +
|VariantN.handler
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
 +
|VariantN.handler
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
 +
|VariantN.handler
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
 +
|VariantN.handler
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
 +
|VariantN.handler
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
 +
|VariantN.handler
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
 +
|VariantN.handler
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
 +
|VariantN.handler
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L489 std.variant]
 +
|VariantN.handler
 +
|array literal may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L494 std.variant]
 +
|VariantN.handler
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L500 std.variant]
 +
|VariantN.handler
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L510 std.variant]
 +
|VariantN.handler
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L648 std.variant]
 +
|VariantN.opAssign
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L791 std.variant]
 +
|VariantN.get
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L810 std.variant]
 +
|VariantN.get
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L916 std.variant]
 +
|VariantN.value
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/variant.d#L974 std.variant]
 +
|VariantN.opArithmetic
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1004 std.xml]
 +
|Tag.tagString
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1011 std.xml]
 +
|Tag.tagString
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1055 std.xml]
 +
|Tag.string
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1059 std.xml]
 +
|Tag.string
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1067 std.xml]
 +
|Tag.string
 +
|indexing an associative array may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1071 std.xml]
 +
|Tag.string
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1075 std.xml]
 +
|Tag.string
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1079 std.xml]
 +
|Tag.string
 +
|setting 'length' may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1080 std.xml]
 +
|Tag.string
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1158 std.xml]
 +
|Tag.const
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1160 std.xml]
 +
|Tag.const
 +
|operator ~= may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1164 std.xml]
 +
|Tag.const
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1166 std.xml]
 +
|Tag.const
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1168 std.xml]
 +
|Tag.const
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1228 std.xml]
 +
|Comment.content
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1279 std.xml]
 +
|Comment.string
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1307 std.xml]
 +
|CData.content
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1358 std.xml]
 +
|CData.string
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1466 std.xml]
 +
|XMLInstruction.content
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1517 std.xml]
 +
|XMLInstruction.string
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1545 std.xml]
 +
|ProcessingInstruction.content
 +
|'new' causes GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1596 std.xml]
 +
|ProcessingInstruction.string
 +
|operator ~ may cause GC allocation
 +
| ???
 +
|-
 +
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1627 std.xml]
 +
|Item.pretty
 +
|array literal may cause GC allocation
 
| ???
 
| ???
 
|-
 
|-
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1466 std.xml]
+
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1674 std.xml]
|XMLInstruction.content
+
|DocumentParser.xmlText_
|'new' causes GC allocation
 
| ???
 
|-
 
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1517 std.xml]
 
|XMLInstruction.string
 
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
| ???
 
|-
 
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1545 std.xml]
 
|ProcessingInstruction.content
 
|'new' causes GC allocation
 
| ???
 
|-
 
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1596 std.xml]
 
|ProcessingInstruction.string
 
|operator ~ may cause GC allocation
 
| ???
 
|-
 
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L1627 std.xml]
 
|Item.pretty
 
|array literal may cause GC allocation
 
 
| ???
 
| ???
 
|-
 
|-
Line 4,402: Line 9,532:
 
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L2560 std.xml]
 
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L2560 std.xml]
 
|ElementParser.checkLiteral
 
|ElementParser.checkLiteral
|operator ~ may cause GC allocation
 
| ???
 
|-
 
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L2569 std.xml]
 
|ElementParser.checkEnd
 
|operator ~ may cause GC allocation
 
| ???
 
|-
 
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L2569 std.xml]
 
|ElementParser.checkEnd
 
|'new' causes GC allocation
 
| ???
 
|-
 
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L2569 std.xml]
 
|ElementParser.checkEnd
 
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
 
| ???
 
| ???
Line 4,638: Line 9,753:
 
|Element.const
 
|Element.const
 
|array literal may cause GC allocation
 
|array literal may cause GC allocation
| ???
 
|-
 
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L924 std.xml]
 
|Element.const
 
|operator ~ may cause GC allocation
 
 
| ???
 
| ???
 
|-
 
|-
Line 4,653: Line 9,763:
 
|Element.const
 
|Element.const
 
|operator ~ may cause GC allocation
 
|operator ~ may cause GC allocation
| ???
 
|-
 
|[https://github.com/D-Programming-Language//phobos/blob/d4d98124ab6cbef7097025a7cfd1161d1963c87e/std/xml.d#L924 std.xml]
 
|Element.const
 
|array literal may cause GC allocation
 
 
| ???
 
| ???
 
|-
 
|-

Revision as of 15:38, 7 October 2014

Auto-generated results as reported by compiler (building unittests with -vgc flag of DMD). For tempaltes only code that is _instantiated_ by unittests build is accounted for (~ all covered code). The tool used to post-process the output can be found here.


Module Artifact Reason Possible Fix(es)
std.algorithm TimSortImpl.sort setting 'length' may cause GC allocation ???
std.algorithm TimSortImpl.ensureCapacity setting 'length' may cause GC allocation ???
std.algorithm reduce.reduceImpl 'new' causes GC allocation ???
std.algorithm r operator ~ may cause GC allocation ???
std.algorithm topNIndex using closure causes GC allocation ???
std.algorithm largestPartialIntersectionWeighted using closure causes GC allocation ???
std.algorithm ror indexing an associative array may cause GC allocation ???
std.algorithm castSwitch 'new' causes GC allocation ???
std.algorithm castSwitch 'new' causes GC allocation ???
std.algorithm castSwitch 'new' causes GC allocation ???
std.algorithm castSwitch 'new' causes GC allocation ???
std.algorithm cartesianProduct using closure causes GC allocation ???
std.algorithm predSwitch 'new' causes GC allocation ???
std.algorithm predSwitch 'new' causes GC allocation ???
std.algorithm SplitterResult.front 'new' causes GC allocation ???
std.algorithm SplitterResult.popFront 'new' causes GC allocation ???
std.algorithm splitter 'new' causes GC allocation ???
std.algorithm splitter 'new' causes GC allocation ???
std.algorithm ignored indexing an associative array may cause GC allocation ???
std.algorithm ignored 'new' causes GC allocation ???
std.algorithm commonPrefix 'new' causes GC allocation ???
std.algorithm Levenshtein.path operator ~= may cause GC allocation ???
std.algorithm Levenshtein.path operator ~= may cause GC allocation ???
std.algorithm Levenshtein.path operator ~= may cause GC allocation ???
std.algorithm Levenshtein.AllocMatrix 'delete' requires GC ???
std.algorithm Levenshtein.AllocMatrix 'new' causes GC allocation ???
std.algorithm Cache.front 'new' causes GC allocation ???
std.algorithm Cache.if 'new' causes GC allocation ???
std.algorithm Cache.popFront 'new' causes GC allocation ???
std.algorithm Cache.if 'new' causes GC allocation ???
std.array insertInPlace setting 'length' may cause GC allocation ???
std.array insertInPlace setting 'length' may cause GC allocation ???
std.array replicate 'new' causes GC allocation ???
std.array split operator ~= may cause GC allocation ???
std.array split operator ~= may cause GC allocation ???
std.array replace 'new' causes GC allocation ???
std.array replaceInPlace operator ~ may cause GC allocation ???
std.array Appender.arr 'new' causes GC allocation ???
std.array Appender.arr setting 'length' may cause GC allocation ???
std.array Appender.ensureAddable 'new' causes GC allocation ???
std.array Appender.ensureAddable 'new' causes GC allocation ???
std.array Appender.ensureAddable setting 'length' may cause GC allocation ???
std.array Appender.ensureAddable operator ~= may cause GC allocation ???
std.array assocArray indexing an associative array may cause GC allocation ???
std.array array operator ~= may cause GC allocation ???
std.array arrayAllocImpl 'new' causes GC allocation ???
std.array arrayAllocImpl 'new' causes GC allocation ???
std.array arrayAllocImpl operator ~= may cause GC allocation ???
std.array arrayAllocImpl operator ~= may cause GC allocation ???
std.array arrayAllocImpl 'new' causes GC allocation ???
std.base64 Base64Impl.ubyte 'new' causes GC allocation ???
std.base64 Base64Impl.Decoder 'new' causes GC allocation ???
std.base64 Base64Impl.Decoder operator ~= may cause GC allocation ???
std.base64 Base64Impl.Decoder setting 'length' may cause GC allocation ???
std.base64 Base64Impl.Decoder 'new' causes GC allocation ???
std.base64 Base64Impl.Decoder 'new' causes GC allocation ???
std.base64 Base64Impl.Decoder 'new' causes GC allocation ???
std.base64 Base64Impl.Decoder 'new' causes GC allocation ???
std.base64 Base64Impl.int operator ~ may cause GC allocation ???
std.base64 Base64Impl.int 'new' causes GC allocation ???
std.base64 Base64Impl.int operator ~ may cause GC allocation ???
std.base64 Base64Impl.char 'new' causes GC allocation ???
std.base64 Base64Impl.Encoder 'new' causes GC allocation ???
std.base64 Base64Impl.Encoder setting 'length' may cause GC allocation ???
std.base64 Base64Impl.Encoder 'new' causes GC allocation ???
std.base64 Base64Impl.ubyte 'new' causes GC allocation ???
std.base64 Base64Impl.decode 'new' causes GC allocation ???
std.bigint BigInt.toString operator ~ may cause GC allocation ???
std.bigint BigInt.toString 'new' causes GC allocation ???
std.bigint BigInt.checkDivByZero 'new' causes GC allocation ???
std.bigint toDecimalString operator ~= may cause GC allocation ???
std.bigint toHex operator ~= may cause GC allocation ???
std.bitmanip BitArray.toString 'new' causes GC allocation ???
std.bitmanip BitArray.toString operator ~ may cause GC allocation ???
std.bitmanip BitArray.bitsSet using closure causes GC allocation ???
std.bitmanip myToStringx operator ~ may cause GC allocation ???
std.bitmanip myToString operator ~ may cause GC allocation ???
std.bitmanip BitArray.length setting 'length' may cause GC allocation ???
std.complex Complex.toString operator ~= may cause GC allocation ???
std.complex Complex.toString using closure causes GC allocation ???
std.complex Complex.toString operator ~= may cause GC allocation ???
std.concurrency locate 'new' causes GC allocation ???
std.concurrency locate 'new' causes GC allocation ???
std.concurrency locate 'new' causes GC allocation ???
std.concurrency locate 'new' causes GC allocation ???
std.concurrency locate 'new' causes GC allocation ???
std.concurrency locate 'new' causes GC allocation ???
std.concurrency locate 'new' causes GC allocation ???
std.concurrency thisTid 'new' causes GC allocation ???
std.concurrency _spawn using closure causes GC allocation ???
std.concurrency _spawn 'new' causes GC allocation ???
std.concurrency _spawn 'new' causes GC allocation ???
std.concurrency _spawn indexing an associative array may cause GC allocation ???
std.concurrency receiveOnly 'new' causes GC allocation ???
std.concurrency OnCrowding 'new' causes GC allocation ???
std.concurrency static 'new' causes GC allocation ???
std.concurrency register operator ~= may cause GC allocation ???
std.concurrency register indexing an associative array may cause GC allocation ???
std.concurrency register indexing an associative array may cause GC allocation ???
std.container.array the 'new' causes GC allocation ???
std.container.array the 'new' causes GC allocation ???
std.container.array the 'new' causes GC allocation ???
std.container.array the 'new' causes GC allocation ???
std.container.array the 'new' causes GC allocation ???
std.container.array the 'new' causes GC allocation ???
std.container.array the 'new' causes GC allocation ???
std.container.array the 'new' causes GC allocation ???
std.container.array the 'new' causes GC allocation ???
std.container.array the 'new' causes GC allocation ???
std.container.array the 'new' causes GC allocation ???
std.container.array the 'new' causes GC allocation ???
std.container.array the 'new' causes GC allocation ???
std.container.array the 'new' causes GC allocation ???
std.container.array the 'new' causes GC allocation ???
std.container.array a 'new' causes GC allocation ???
std.container.array to 'new' causes GC allocation ???
std.container.array to 'new' causes GC allocation ???
std.container.array operators 'new' causes GC allocation ???
std.container.dlist DList.createNode 'new' causes GC allocation ???
std.container.dlist DList.initialize 'new' causes GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl indexing an associative array may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv parse 'new' causes GC allocation ???
std.conv parse 'new' causes GC allocation ???
std.conv parse 'new' causes GC allocation ???
std.conv parse 'new' causes GC allocation ???
std.conv parse operator ~ may cause GC allocation ???
std.conv parse 'new' causes GC allocation ???
std.conv parse 'new' causes GC allocation ???
std.conv parse 'new' causes GC allocation ???
std.conv parse 'new' causes GC allocation ???
std.conv parse 'new' causes GC allocation ???
std.conv parse 'new' causes GC allocation ???
std.conv parse 'new' causes GC allocation ???
std.conv parse 'new' causes GC allocation ???
std.conv parse 'new' causes GC allocation ???
std.conv parse 'new' causes GC allocation ???
std.conv parse operator ~= may cause GC allocation ???
std.conv parse indexing an associative array may cause GC allocation ???
std.conv parseEscape operator ~ may cause GC allocation ???
std.conv textImpl operator ~= may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv strippedOctalLiteral operator ~= may cause GC allocation ???
std.conv convError 'new' causes GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv convError 'new' causes GC allocation ???
std.conv parseError 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl operator ~ may cause GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.conv toImpl 'new' causes GC allocation ???
std.cstream ulong 'new' causes GC allocation ???
std.cstream din 'new' causes GC allocation ???
std.cstream dout 'new' causes GC allocation ???
std.cstream derr 'new' causes GC allocation ???
std.csv CsvReader.prime indexing an associative array may cause GC allocation ???
std.csv CsvReader.prime 'new' causes GC allocation ???
std.csv CsvReader.prime 'new' causes GC allocation ???
std.csv CsvRecord.popFront 'new' causes GC allocation ???
std.csv CsvRecord.popFront 'new' causes GC allocation ???
std.csv CsvRecord.prime 'new' causes GC allocation ???
std.csv CSVException.string operator ~ may cause GC allocation ???
std.csv CsvRecord.prime 'new' causes GC allocation ???
std.csv csvNextToken 'new' causes GC allocation ???
std.csv csvNextToken 'new' causes GC allocation ???
std.csv csvNextToken 'new' causes GC allocation ???
std.csv CsvReader.input 'new' causes GC allocation ???
std.csv CsvReader.input 'new' causes GC allocation ???
std.csv CsvReader.input indexing an associative array may cause GC allocation ???
std.csv CsvReader.input operator ~= may cause GC allocation ???
std.csv CsvReader.input setting 'length' may cause GC allocation ???
std.csv CsvReader.input indexing an associative array may cause GC allocation ???
std.csv CsvReader.input 'new' causes GC allocation ???
std.csv CsvReader.input operator ~ may cause GC allocation ???
std.csv CsvReader.input 'new' causes GC allocation ???
std.datetime Date.dayOfYear 'new' causes GC allocation ???
std.datetime Date.fromISOString 'new' causes GC allocation ???
std.datetime Date.fromISOString 'new' causes GC allocation ???
std.datetime Date.fromISOString 'new' causes GC allocation ???
std.datetime Date.fromISOString 'new' causes GC allocation ???
std.datetime Date.fromISOString 'new' causes GC allocation ???
std.datetime Date.fromISOString 'new' causes GC allocation ???
std.datetime Date.fromISOExtString 'new' causes GC allocation ???
std.datetime Date.fromISOExtString 'new' causes GC allocation ???
std.datetime Date.fromISOExtString 'new' causes GC allocation ???
std.datetime Date.fromISOExtString 'new' causes GC allocation ???
std.datetime Date.fromISOExtString 'new' causes GC allocation ???
std.datetime Date.fromISOExtString 'new' causes GC allocation ???
std.datetime Date.fromISOExtString 'new' causes GC allocation ???
std.datetime Date.fromISOExtString 'new' causes GC allocation ???
std.datetime Date.fromSimpleString 'new' causes GC allocation ???
std.datetime Date.fromSimpleString 'new' causes GC allocation ???
std.datetime Date.fromSimpleString 'new' causes GC allocation ???
std.datetime Date.fromSimpleString 'new' causes GC allocation ???
std.datetime Date.fromSimpleString 'new' causes GC allocation ???
std.datetime Date.fromSimpleString 'new' causes GC allocation ???
std.datetime Date.fromSimpleString 'new' causes GC allocation ???
std.datetime TimeOfDay.fromISOString 'new' causes GC allocation ???
std.datetime TimeOfDay.fromISOString 'new' causes GC allocation ???
std.datetime TimeOfDay.fromISOString 'new' causes GC allocation ???
std.datetime TimeOfDay.fromISOString 'new' causes GC allocation ???
std.datetime TimeOfDay.fromISOExtString 'new' causes GC allocation ???
std.datetime TimeOfDay.fromISOExtString 'new' causes GC allocation ???
std.datetime TimeOfDay.fromISOExtString 'new' causes GC allocation ???
std.datetime TimeOfDay.fromISOExtString 'new' causes GC allocation ???
std.datetime TimeOfDay.fromISOExtString 'new' causes GC allocation ???
std.datetime TimeOfDay.fromISOExtString 'new' causes GC allocation ???
std.datetime DateTime.fromISOString 'new' causes GC allocation ???
std.datetime DateTime.fromISOString 'new' causes GC allocation ???
std.datetime DateTime.fromISOExtString 'new' causes GC allocation ???
std.datetime DateTime.fromISOExtString 'new' causes GC allocation ???
std.datetime DateTime.fromSimpleString 'new' causes GC allocation ???
std.datetime DateTime.fromSimpleString 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime SysTime.fracSecs 'new' causes GC allocation ???
std.datetime SysTime.fracSecs 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime SysTime.fracSec 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime delegate using closure causes GC allocation ???
std.datetime delegate using closure causes GC allocation ???
std.datetime delegate using closure causes GC allocation ???
std.datetime delegate using closure causes GC allocation ???
std.datetime IntervalRange._enforceNotEmpty 'new' causes GC allocation ???
std.datetime IntervalRange._enforceCorrectDirection 'new' causes GC allocation ???
std.datetime IntervalRange._enforceCorrectDirection 'new' causes GC allocation ???
std.datetime PosInfIntervalRange._enforceCorrectDirection 'new' causes GC allocation ???
std.datetime NegInfIntervalRange._enforceCorrectDirection 'new' causes GC allocation ???
std.datetime SimpleTimeZone.fromISOString 'new' causes GC allocation ???
std.datetime SimpleTimeZone.fromISOString 'new' causes GC allocation ???
std.datetime SimpleTimeZone.fromISOString 'new' causes GC allocation ???
std.datetime SimpleTimeZone.fromISOString 'new' causes GC allocation ???
std.datetime SimpleTimeZone.fromISOString 'new' causes GC allocation ???
std.datetime SimpleTimeZone.fromISOString 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** operator ~= may cause GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime **** 'new' causes GC allocation ???
std.datetime DosFileTimeToSysTime 'new' causes GC allocation ???
std.datetime DosFileTimeToSysTime 'new' causes GC allocation ???
std.datetime SysTimeToDosFileTime 'new' causes GC allocation ???
std.datetime SysTimeToDosFileTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime parseRFC822DateTime 'new' causes GC allocation ???
std.datetime enforceValid 'new' causes GC allocation ???
std.datetime enforceValid 'new' causes GC allocation ???
std.datetime enforceValid 'new' causes GC allocation ???
std.datetime enforceValid 'new' causes GC allocation ???
std.datetime enforceValid 'new' causes GC allocation ???
std.datetime monthFromString 'new' causes GC allocation ???
std.datetime fracSecsFromISOString 'new' causes GC allocation ???
std.datetime fracSecsFromISOString 'new' causes GC allocation ???
std.datetime fracSecsFromISOString 'new' causes GC allocation ???
std.datetime Clock.currStdTime 'new' causes GC allocation ???
std.datetime SysTime.DateTime 'new' causes GC allocation ???
std.datetime SysTime.DateTime 'new' causes GC allocation ???
std.datetime SysTime.DateTime 'new' causes GC allocation ???
std.datetime SysTime.toISOString operator ~ may cause GC allocation ???
std.datetime SysTime.toISOString operator ~ may cause GC allocation ???
std.datetime SysTime.toISOExtString operator ~ may cause GC allocation ???
std.datetime SysTime.toISOExtString operator ~ may cause GC allocation ???
std.datetime SysTime.toSimpleString operator ~ may cause GC allocation ???
std.datetime SysTime.toSimpleString operator ~ may cause GC allocation ???
std.datetime SysTime.fromISOString 'new' causes GC allocation ???
std.datetime SysTime.fromISOExtString 'new' causes GC allocation ???
std.datetime SysTime.fromISOExtString 'new' causes GC allocation ???
std.datetime SysTime.fromSimpleString 'new' causes GC allocation ???
std.datetime SysTime.fromSimpleString 'new' causes GC allocation ???
std.datetime Date.yearBC 'new' causes GC allocation ???
std.datetime Date.yearBC 'new' causes GC allocation ???
std.digest.digest ubyte 'new' causes GC allocation ???
std.encoding sanitize 'new' causes GC allocation ???
std.encoding transcode 'new' causes GC allocation ???
std.encoding transcode setting 'length' may cause GC allocation ???
std.encoding EncodingScheme.register operator ~ may cause GC allocation ???
std.encoding EncodingScheme.register 'new' causes GC allocation ???
std.encoding EncodingScheme.register indexing an associative array may cause GC allocation ???
std.encoding EncodingScheme.create operator ~ may cause GC allocation ???
std.encoding EncodingScheme.create 'new' causes GC allocation ???
std.encoding EncodingScheme.create operator ~ may cause GC allocation ???
std.encoding EncodingScheme.create 'new' causes GC allocation ???
std.encoding EncodingScheme.sanitize 'new' causes GC allocation ???
std.encoding EncodingSchemeASCII.const array literal may cause GC allocation ???
std.encoding EncodingSchemeLatin1.const array literal may cause GC allocation ???
std.encoding EncodingSchemeWindows1252.const array literal may cause GC allocation ???
std.encoding EncodingSchemeUtf8.const array literal may cause GC allocation ???
std.encoding EncodingSchemeUtf16Native.const array literal may cause GC allocation ???
std.encoding EncodingSchemeUtf32Native.const array literal may cause GC allocation ???
std.encoding EncoderFunctions.WriteToString() operator ~= may cause GC allocation ???
std.exception ErrnoException.msg operator ~ may cause GC allocation ???
std.exception assertThrown 'new' causes GC allocation ???
std.exception bailOut 'new' causes GC allocation ???
std.exception bailOut 'new' causes GC allocation ???
std.exception errnoEnforce 'new' causes GC allocation ???
std.exception enforceEx.enforceEx 'new' causes GC allocation ???
std.exception enforceEx.enforceEx 'new' causes GC allocation ???
std.exception assertNotThrown operator ~ may cause GC allocation ???
std.exception assertNotThrown 'new' causes GC allocation ???
std.exception assumeWontThrow operator ~ may cause GC allocation ???
std.exception assumeWontThrow 'new' causes GC allocation ???
std.exception assumeWontThrow operator ~ may cause GC allocation ???
std.exception assumeWontThrow 'new' causes GC allocation ???
std.exception assumeWontThrow operator ~ may cause GC allocation ???
std.file ensureDirExists 'new' causes GC allocation ???
std.file cenforce 'new' causes GC allocation ???
std.file rmdir 'new' causes GC allocation ???
std.file rmdir setting 'length' may cause GC allocation ???
std.file rmdir setting 'length' may cause GC allocation ???
std.file rmdir 'new' causes GC allocation ???
std.file **** 'new' causes GC allocation ???
std.file **** operator ~ may cause GC allocation ???
std.file **** operator ~ may cause GC allocation ???
std.file rmdirRecurse 'new' causes GC allocation ???
std.file read 'delete' requires GC ???
std.file dirEntries using closure causes GC allocation ???
std.file remove operator ~ may cause GC allocation ???
std.file std operator ~ may cause GC allocation ???
std.format FormatSpec.fillUp 'new' causes GC allocation ???
std.format singleSpec 'new' causes GC allocation ???
std.format singleSpec 'new' causes GC allocation ???
std.format singleSpec 'new' causes GC allocation ???
std.format formatRange 'new' causes GC allocation ???
std.format formatNth operator ~= may cause GC allocation ???
std.format formatNth operator ~ may cause GC allocation ???
std.format formatNth operator ~ may cause GC allocation ???
std.format getNthInt 'new' causes GC allocation ???
std.format getNthInt 'new' causes GC allocation ???
std.format unformatRange operator ~= may cause GC allocation ???
std.format unformatRange indexing an associative array may cause GC allocation ???
std.format primitiveTypeInfo associative array literal may cause GC allocation ???
std.format doFormat 'new' causes GC allocation ???
std.format doFormat 'new' causes GC allocation ???
std.format doFormat 'new' causes GC allocation ???
std.format doFormat 'new' causes GC allocation ???
std.format doFormat operator ~ may cause GC allocation ???
std.format doFormat 'new' causes GC allocation ???
std.format doFormat 'new' causes GC allocation ???
std.format doFormat 'new' causes GC allocation ???
std.format doFormat 'new' causes GC allocation ???
std.format doFormat 'new' causes GC allocation ???
std.format doFormat 'new' causes GC allocation ???
std.format FormatSpec.fillUp 'new' causes GC allocation ???
std.functional partial.if operator ~= may cause GC allocation ???
std.functional partial.if operator ~= may cause GC allocation ???
std.functional memoize.memoize indexing an associative array may cause GC allocation ???
std.getopt Option operator ~ may cause GC allocation ???
std.getopt Option operator ~ may cause GC allocation ???
std.getopt Option operator ~ may cause GC allocation ???
std.getopt getoptImpl operator ~= may cause GC allocation ???
std.getopt getoptImpl 'new' causes GC allocation ???
std.getopt getoptImpl operator ~ may cause GC allocation ???
std.getopt getoptImpl 'new' causes GC allocation ???
std.getopt getoptImpl operator ~ may cause GC allocation ???
std.getopt getoptImpl 'new' causes GC allocation ???
std.getopt getoptImpl operator ~ may cause GC allocation ???
std.getopt getoptImpl 'new' causes GC allocation ???
std.getopt getoptImpl operator ~ may cause GC allocation ???
std.getopt getoptImpl 'new' causes GC allocation ???
std.getopt getoptImpl operator ~ may cause GC allocation ???
std.getopt getoptImpl 'new' causes GC allocation ???
std.getopt getoptImpl operator ~ may cause GC allocation ???
std.getopt getoptImpl 'new' causes GC allocation ???
std.getopt getoptImpl operator ~ may cause GC allocation ???
std.getopt getoptImpl 'new' causes GC allocation ???
std.getopt getoptImpl operator ~ may cause GC allocation ???
std.getopt getoptImpl 'new' causes GC allocation ???
std.getopt getoptImpl operator ~ may cause GC allocation ???
std.getopt getoptImpl 'new' causes GC allocation ???
std.getopt getoptImpl operator ~ may cause GC allocation ???
std.getopt getoptImpl 'new' causes GC allocation ???
std.getopt getoptImpl operator ~ may cause GC allocation ???
std.getopt getoptImpl 'new' causes GC allocation ???
std.getopt getoptImpl operator ~ may cause GC allocation ???
std.getopt getoptImpl 'new' causes GC allocation ???
std.getopt getoptImpl operator ~ may cause GC allocation ???
std.getopt getoptImpl 'new' causes GC allocation ???
std.getopt getoptImpl operator ~ may cause GC allocation ???
std.getopt getoptImpl 'new' causes GC allocation ???
std.getopt getoptImpl operator ~ may cause GC allocation ???
std.getopt getoptImpl 'new' causes GC allocation ???
std.getopt getoptImpl operator ~ may cause GC allocation ???
std.getopt getoptImpl 'new' causes GC allocation ???
std.getopt getoptImpl operator ~ may cause GC allocation ???
std.getopt getoptImpl 'new' causes GC allocation ???
std.getopt getoptImpl operator ~ may cause GC allocation ???
std.getopt getoptImpl 'new' causes GC allocation ???
std.getopt getoptImpl operator ~ may cause GC allocation ???
std.getopt getoptImpl 'new' causes GC allocation ???
std.getopt getoptImpl operator ~ may cause GC allocation ???
std.getopt getoptImpl 'new' causes GC allocation ???
std.getopt getoptImpl operator ~ may cause GC allocation ???
std.getopt getoptImpl 'new' causes GC allocation ???
std.getopt getoptImpl operator ~ may cause GC allocation ???
std.getopt getoptImpl 'new' causes GC allocation ???
std.getopt getoptImpl operator ~ may cause GC allocation ???
std.getopt getoptImpl operator ~ may cause GC allocation ???
std.getopt getoptImpl 'new' causes GC allocation ???
std.getopt getoptImpl operator ~= may cause GC allocation ???
std.getopt handleOption operator ~= may cause GC allocation ???
std.getopt handleOption operator ~= may cause GC allocation ???
std.getopt handleOption operator ~ may cause GC allocation ???
std.getopt handleOption operator ~ may cause GC allocation ???
std.getopt handleOption operator ~ may cause GC allocation ???
std.getopt handleOption operator ~ may cause GC allocation ???
std.getopt handleOption operator ~= may cause GC allocation ???
std.getopt handleOption operator ~= may cause GC allocation ???
std.getopt handleOption indexing an associative array may cause GC allocation ???
std.internal.math.biguintcore BigUint.immutable(BigDigit) array literal may cause GC allocation ???
std.internal.math.biguintcore includeSign 'new' causes GC allocation ???
std.internal.math.biguintcore BigDigit 'new' causes GC allocation ???
std.internal.math.biguintcore BigDigit 'new' causes GC allocation ???
std.internal.math.biguintcore BigDigit 'new' causes GC allocation ???
std.internal.math.biguintcore BigDigit 'new' causes GC allocation ???
std.internal.math.biguintcore BigDigit 'new' causes GC allocation ???
std.internal.math.biguintcore mulInternal 'new' causes GC allocation ???
std.internal.math.biguintcore mulInternal 'delete' requires GC ???
std.internal.math.biguintcore mulInternal 'new' causes GC allocation ???
std.internal.math.biguintcore mulInternal 'delete' requires GC ???
std.internal.math.biguintcore BigDigit 'new' causes GC allocation ???
std.internal.math.biguintcore scratchbuff 'delete' requires GC ???
std.internal.math.biguintcore divModInternal 'new' causes GC allocation ???
std.internal.math.biguintcore divModInternal 'new' causes GC allocation ???
std.internal.math.biguintcore divModInternal 'delete' requires GC ???
std.internal.math.biguintcore divModInternal 'delete' requires GC ???
std.internal.math.biguintcore biguintToDecimal setting 'length' may cause GC allocation ???
std.internal.math.biguintcore the 'new' causes GC allocation ???
std.internal.math.biguintcore BigUint.opAssign array literal may cause GC allocation ???
std.internal.math.biguintcore BigUint.opAssign array literal may cause GC allocation ???
std.internal.math.biguintcore BigUint.opAssign array literal may cause GC allocation ???
std.internal.math.biguintcore BigUint.opAssign array literal may cause GC allocation ???
std.internal.math.biguintcore BigUint.opAssign array literal may cause GC allocation ???
std.internal.math.biguintcore BigUint.opAssign array literal may cause GC allocation ???
std.internal.math.biguintcore blockDivMod 'new' causes GC allocation ???
std.internal.math.biguintcore blockDivMod 'delete' requires GC ???
std.internal.math.biguintcore BigUint.char 'new' causes GC allocation ???
std.internal.math.biguintcore BigUint.char 'new' causes GC allocation ???
std.internal.math.biguintcore BigUint.fromHexString 'new' causes GC allocation ???
std.internal.math.biguintcore BigUint.fromHexString array literal may cause GC allocation ???
std.internal.math.biguintcore BigUint.fromDecimalString array literal may cause GC allocation ???
std.internal.math.biguintcore BigUint.fromDecimalString 'new' causes GC allocation ???
std.internal.math.biguintcore BigUint.fromDecimalString setting 'length' may cause GC allocation ???
std.internal.math.biguintcore BigUint.opShl 'new' causes GC allocation ???
std.internal.math.biguintcore BigUint.mul array literal may cause GC allocation ???
std.internal.math.biguintcore BigUint.mul 'new' causes GC allocation ???
std.internal.math.biguintcore BigUint.divInt 'new' causes GC allocation ???
std.internal.math.biguintcore BigUint.modInt 'new' causes GC allocation ???
std.internal.math.biguintcore BigUint.modInt 'delete' requires GC ???
std.internal.math.biguintcore BigUint.div array literal may cause GC allocation ???
std.internal.math.biguintcore BigUint.div 'new' causes GC allocation ???
std.internal.math.biguintcore BigUint.mod array literal may cause GC allocation ???
std.internal.math.biguintcore BigUint.mod 'new' causes GC allocation ???
std.internal.math.biguintcore BigUint.mod 'new' causes GC allocation ???
std.internal.math.biguintcore BigUint.pow array literal may cause GC allocation ???
std.internal.math.biguintcore BigUint.pow 'new' causes GC allocation ???
std.internal.math.biguintcore BigUint.pow 'new' causes GC allocation ???
std.json JSONValue.assign indexing an associative array may cause GC allocation ???
std.json JSONValue.assign 'new' causes GC allocation ???
std.json JSONValue.inout operator ~ may cause GC allocation ???
std.json JSONValue.opIndexAssign indexing an associative array may cause GC allocation ???
std.json JSONValue.opBinary operator ~= may cause GC allocation ???
std.json JSONValue.opOpAssign operator ~= may cause GC allocation ???
std.json parseJSON 'new' causes GC allocation ???
std.json parseJSON indexing an associative array may cause GC allocation ???
std.json parseJSON operator ~= may cause GC allocation ???
std.json toJSON 'new' causes GC allocation ???
std.json toJSON indexing an associative array may cause GC allocation ???
std.mmfile MmFile.filename operator ~ may cause GC allocation ???
std.mmfile MmFile.filename operator ~ may cause GC allocation ???
std.mmfile MmFile.filename operator ~ may cause GC allocation ???
std.net.curl byLine array literal may cause GC allocation ???
std.net.curl byLine array literal may cause GC allocation ???
std.net.curl template using closure causes GC allocation ???
std.net.curl template using closure causes GC allocation ???
std.net.curl AsyncLineInputRange 'new' causes GC allocation ???
std.net.curl AsyncChunkInputRange 'new' causes GC allocation ???
std.net.curl decodeString(Char operator ~= may cause GC allocation ???
std.net.curl decodeLineInto setting 'length' may cause GC allocation ???
std.net.curl decodeLineInto operator ~= may cause GC allocation ???
std.net.curl decodeLineInto setting 'length' may cause GC allocation ???
std.net.curl decodeLineInto operator ~= may cause GC allocation ???
std.net.curl HTTP.Impl using closure causes GC allocation ???
std.net.curl HTTP.Impl indexing an associative array may cause GC allocation ???
std.net.curl HTTP.url operator ~ may cause GC allocation ???
std.net.curl download using closure causes GC allocation ???
std.net.curl download 'new' causes GC allocation ???
std.net.curl FTP.url operator ~ may cause GC allocation ???
std.net.curl SMTP.Impl using closure causes GC allocation ???
std.net.curl upload using closure causes GC allocation ???
std.net.curl upload 'new' causes GC allocation ???
std.net.curl Curl.onReceive using closure causes GC allocation ???
std.net.curl Curl.onReceiveHeader using closure causes GC allocation ???
std.net.curl Curl.onSend using closure causes GC allocation ???
std.net.curl Curl.onSeek using closure causes GC allocation ???
std.net.curl Curl.onSocketOption using closure causes GC allocation ???
std.net.curl Curl.onProgress using closure causes GC allocation ???
std.net.curl Pool.void 'new' causes GC allocation ???
std.net.curl _receiveAsyncChunks using closure causes GC allocation ???
std.net.curl _finalizeAsyncChunks setting 'length' may cause GC allocation ???
std.net.curl _receiveAsyncLines using closure causes GC allocation ???
std.net.curl _receiveAsyncLines setting 'length' may cause GC allocation ???
std.net.curl _receiveAsyncLines operator ~= may cause GC allocation ???
std.net.curl _spawnAsync using closure causes GC allocation ???
std.net.curl _spawnAsync 'new' causes GC allocation ???
std.net.curl _spawnAsync setting 'length' may cause GC allocation ???
std.net.curl _spawnAsync 'new' causes GC allocation ???
std.net.curl del operator ~ may cause GC allocation ???
std.net.curl _basicHTTP using closure causes GC allocation ???
std.net.curl _basicHTTP operator ~= may cause GC allocation ???
std.net.curl _basicHTTP operator ~= may cause GC allocation ???
std.net.curl _basicHTTP operator ~= may cause GC allocation ???
std.net.curl _basicHTTP indexing an associative array may cause GC allocation ???
std.net.curl _basicFTP using closure causes GC allocation ???
std.net.curl _basicFTP operator ~= may cause GC allocation ???
std.net.isemail isEmail associative array literal may cause GC allocation ???
std.net.isemail isEmail associative array literal may cause GC allocation ???
std.net.isemail isEmail array literal may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail grep using closure causes GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail array literal may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~ may cause GC allocation ???
std.net.isemail isEmail 'new' causes GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~ may cause GC allocation ???
std.net.isemail isEmail 'new' causes GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~ may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~ may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~ may cause GC allocation ???
std.net.isemail isEmail 'new' causes GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~ may cause GC allocation ???
std.net.isemail isEmail 'new' causes GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~ may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~ may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail operator ~= may cause GC allocation ???
std.net.isemail isEmail indexing an associative array may cause GC allocation ???
std.net.isemail isEmail array literal may cause GC allocation ???
std.net.isemail isEmail array literal may cause GC allocation ???
std.numeric Fft.memSpace 'new' causes GC allocation ???
std.outbuffer OutBuffer.reserve setting 'length' may cause GC allocation ???
std.parallelism TaskPool.abstractPutNoSync 'new' causes GC allocation ???
std.parallelism TaskPool.abstractPutGroupNoSync 'new' causes GC allocation ???
std.parallelism TaskPool.task 'new' causes GC allocation ???
std.parallelism TaskPool.nWorkers 'new' causes GC allocation ???
std.parallelism TaskPool.nWorkers 'new' causes GC allocation ???
std.parallelism TaskPool.nWorkers 'new' causes GC allocation ???
std.parallelism TaskPool.nWorkers 'new' causes GC allocation ???
std.parallelism TaskPool.nWorkers 'new' causes GC allocation ???
std.parallelism TaskPool.nWorkers 'new' causes GC allocation ???
std.parallelism **** using closure causes GC allocation ???
std.parallelism **** setting 'length' may cause GC allocation ???
std.parallelism **** setting 'length' may cause GC allocation ???
std.parallelism **** setting 'length' may cause GC allocation ???
std.parallelism **** setting 'length' may cause GC allocation ???
std.parallelism **** 'new' causes GC allocation ???
std.parallelism TaskPool.asyncBuf setting 'length' may cause GC allocation ???
std.parallelism TaskPool.asyncBuf setting 'length' may cause GC allocation ???
std.parallelism TaskPool.asyncBuf 'new' causes GC allocation ???
std.parallelism **** using closure causes GC allocation ???
std.parallelism **** 'new' causes GC allocation ???
std.parallelism TaskPool.WorkerLocalStorage 'new' causes GC allocation ???
std.parallelism taskPool 'new' causes GC allocation ???
std.parallelism ) 'new' causes GC allocation ???
std.parallelism foreachErr 'new' causes GC allocation ???
std.parallelism RoundRobinBuffer.) setting 'length' may cause GC allocation ???
std.parallelism RoundRobinBuffer.) setting 'length' may cause GC allocation ???
std.parallelism Task.executeInNewThread 'new' causes GC allocation ???
std.parallelism Task.executeInNewThread 'new' causes GC allocation ???
std.parallelism task 'new' causes GC allocation ???
std.parallelism task 'new' causes GC allocation ???
std.parallelism task 'new' causes GC allocation ???
std.path **** setting 'length' may cause GC allocation ???
std.path buildNormalizedPath 'new' causes GC allocation ???
std.path buildNormalizedPath 'new' causes GC allocation ???
std.path absolutePath 'new' causes GC allocation ???
std.path relativePath 'new' causes GC allocation ???
std.path relativePath operator ~= may cause GC allocation ???
std.path relativePath operator ~= may cause GC allocation ???
std.path relativePath operator ~= may cause GC allocation ???
std.path relativePath operator ~= may cause GC allocation ???
std.path globMatch operator ~ may cause GC allocation ???
std.path expandTilde operator ~= may cause GC allocation ???
std.path expandTilde operator ~ may cause GC allocation ???
std.path expandTilde operator ~ may cause GC allocation ???
std.path setExtension operator ~ may cause GC allocation ???
std.path setExtension operator ~ may cause GC allocation ???
std.path setExtension operator ~= may cause GC allocation ???
std.path setExtension operator ~= may cause GC allocation ???
std.path setExtension operator ~= may cause GC allocation ???
std.path setExtension operator ~ may cause GC allocation ???
std.path defaultExtension operator ~ may cause GC allocation ???
std.path defaultExtension operator ~ may cause GC allocation ???
std.path **** 'new' causes GC allocation ???
std.process Pid.returns 'new' causes GC allocation ???
std.process pipe 'new' causes GC allocation ???
std.process pipe 'new' causes GC allocation ???
std.process pipe 'new' causes GC allocation ???
std.process pipeProcessImpl 'new' causes GC allocation ???
std.process pipeProcessImpl 'new' causes GC allocation ???
std.process ProcessPipes.stdin 'new' causes GC allocation ???
std.process ProcessPipes.stdout 'new' causes GC allocation ???
std.process ProcessPipes.stderr 'new' causes GC allocation ???
std.process ProcessException.newFromErrno operator ~ may cause GC allocation ???
std.process ProcessException.newFromErrno 'new' causes GC allocation ???
std.process TestScript.code operator ~ may cause GC allocation ???
std.process TestScript.code operator ~ may cause GC allocation ???
std.process uniqueTempPath operator ~ may cause GC allocation ???
std.process escapeWindowsShellCommand 'new' causes GC allocation ???
std.process escapeWindowsShellCommand 'new' causes GC allocation ???
std.process escapeShellArguments 'new' causes GC allocation ???
std.process escapeShellArguments setting 'length' may cause GC allocation ???
std.process charAllocator 'new' causes GC allocation ???
std.process environment.opIndex operator ~ may cause GC allocation ???
std.process environment.Exception operator ~ may cause GC allocation ???
std.process environment.toAA indexing an associative array may cause GC allocation ???
std.process use 'new' causes GC allocation ???
std.process use operator ~ may cause GC allocation ???
std.process execvpe_ operator ~ may cause GC allocation ???
std.process shell operator ~= may cause GC allocation ???
std.process spawnProcessImpl 'new' causes GC allocation ???
std.process spawnProcessImpl 'new' causes GC allocation ???
std.process spawnProcessImpl 'new' causes GC allocation ???
std.process spawnProcessImpl 'new' causes GC allocation ???
std.process spawnProcessImpl 'new' causes GC allocation ???
std.process spawnProcessImpl operator ~ may cause GC allocation ???
std.process spawnProcessImpl 'new' causes GC allocation ???
std.process createEnv 'new' causes GC allocation ???
std.process createEnv operator ~ may cause GC allocation ???
std.random uniformDistribution setting 'length' may cause GC allocation ???
std.random RandomCover.if setting 'length' may cause GC allocation ???
std.random RandomCover.if setting 'length' may cause GC allocation ???
std.random **** 'new' causes GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~= may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~= may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~= may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~= may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~= may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~= may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~= may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~= may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~= may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~= may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~= may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~= may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~= may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~= may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~= may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~= may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~= may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~= may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~= may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~= may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~= may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~= may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~= may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~= may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range roundRobin operator ~ may cause GC allocation ???
std.range Repeat.opSlice 'new' causes GC allocation ???
std.range Cycle.if 'new' causes GC allocation ???
std.range Cycle.opSlice 'new' causes GC allocation ???
std.range policy 'new' causes GC allocation ???
std.range lockstepMixin operator ~= may cause GC allocation ???
std.range lockstepMixin operator ~= may cause GC allocation ???
std.range lockstepMixin operator ~= may cause GC allocation ???
std.range lockstepMixin operator ~= may cause GC allocation ???
std.range lockstepMixin operator ~= may cause GC allocation ???
std.range lockstepMixin operator ~= may cause GC allocation ???
std.range put array literal may cause GC allocation ???
std.range putChar array literal may cause GC allocation ???
std.range OnlyResult.opIndex 'new' causes GC allocation ???
std.range OnlyResult.opSlice 'new' causes GC allocation ???
std.range OnlyResult.opIndex 'new' causes GC allocation ???
std.range OnlyResult.opSlice 'new' causes GC allocation ???
std.range OnlyResult.opIndex 'new' causes GC allocation ???
std.range OnlyResult.opSlice 'new' causes GC allocation ???
std.range enumerate 'new' causes GC allocation ???
std.range putMethods operator ~ may cause GC allocation ???
std.range putMethods operator ~= may cause GC allocation ???
std.range putMethods operator ~ may cause GC allocation ???
std.range InputRangeObject.if 'new' causes GC allocation ???
std.range inputRangeObject 'new' causes GC allocation ???
std.range outputRangeObject.E 'new' causes GC allocation ???
std.socket getAddressInfoImpl 'new' causes GC allocation ???
std.socket getAddressInfoImpl 'new' causes GC allocation ???
std.socket getAddressInfoImpl 'new' causes GC allocation ???
std.socket serviceToPort 'new' causes GC allocation ???
std.socket getAddress setting 'length' may cause GC allocation ???
std.socket getAddress 'new' causes GC allocation ???
std.socket getAddress 'new' causes GC allocation ???
std.socket getAddress operator ~= may cause GC allocation ???
std.socket getAddress 'new' causes GC allocation ???
std.socket parseAddress 'new' causes GC allocation ???
std.socket parseAddress 'new' causes GC allocation ???
std.socket Address.toHostString 'new' causes GC allocation ???
std.socket Address.toHostString 'new' causes GC allocation ???
std.socket Address.toHostString operator ~ may cause GC allocation ???
std.socket Address.toHostString 'new' causes GC allocation ???
std.socket Address.toHostString operator ~ may cause GC allocation ???
std.socket Address.toServiceString 'new' causes GC allocation ???
std.socket Address.toServiceString 'new' causes GC allocation ???
std.socket Address.toServiceString operator ~ may cause GC allocation ???
std.socket Address.toServiceString 'new' causes GC allocation ???
std.socket Address.toServiceString operator ~ may cause GC allocation ???
std.socket Address.string operator ~ may cause GC allocation ???
std.socket Address.string operator ~ may cause GC allocation ???
std.socket InternetAddress.char 'new' causes GC allocation ???
std.socket InternetAddress.char 'new' causes GC allocation ???
std.socket InternetAddress.string 'new' causes GC allocation ???
std.socket Internet6Address.parse 'new' causes GC allocation ???
std.socket if 'new' causes GC allocation ???
std.socket SocketSet.SocketSet setting 'length' may cause GC allocation ???
std.socket SocketSet.SocketSet setting 'length' may cause GC allocation ???
std.socket SocketSet.add setting 'length' may cause GC allocation ???
std.socket SocketSet.add setting 'length' may cause GC allocation ???
std.socket SocketOSException.msg operator ~ may cause GC allocation ???
std.socket Socket.af 'new' causes GC allocation ???
std.socket Socket.af 'new' causes GC allocation ???
std.socket Socket.blocking 'new' causes GC allocation ???
std.socket Socket.bind 'new' causes GC allocation ???
std.socket Socket.connect 'new' causes GC allocation ???
std.socket Socket.listen 'new' causes GC allocation ???
std.socket Socket.Socket 'new' causes GC allocation ???
std.socket Socket.accept 'new' causes GC allocation ???
std.socket Socket.hostName 'new' causes GC allocation ???
std.socket Socket.remoteAddress 'new' causes GC allocation ???
std.socket Socket.remoteAddress 'new' causes GC allocation ???
std.socket Socket.localAddress 'new' causes GC allocation ???
std.socket Socket.localAddress 'new' causes GC allocation ???
std.socket Socket.receiveFrom 'new' causes GC allocation ???
std.socket Socket.getOption 'new' causes GC allocation ???
std.socket Socket.getOption operator ~ may cause GC allocation ???
std.socket Socket.setOption 'new' causes GC allocation ???
std.socket Socket.setOption 'new' causes GC allocation ???
std.socket Socket.setOption operator ~ may cause GC allocation ???
std.socket Socket.setOption 'new' causes GC allocation ???
std.socket Socket.select 'new' causes GC allocation ???
std.socket Socket.Address 'new' causes GC allocation ???
std.socket Socket.Address 'new' causes GC allocation ???
std.socket Socket.Address 'new' causes GC allocation ???
std.socket socketPair 'new' causes GC allocation ???
std.socket socketPair 'new' causes GC allocation ???
std.socket Protocol.populate 'new' causes GC allocation ???
std.socket Service.populate 'new' causes GC allocation ???
std.socket InternetHost.validHostent 'new' causes GC allocation ???
std.socket InternetHost.populate 'new' causes GC allocation ???
std.socket InternetHost.populate 'new' causes GC allocation ???
std.socketstream SocketStream.SocketStream 'new' causes GC allocation ???
std.stdio ) operator ~ may cause GC allocation ???
std.stdio file operator ~ may cause GC allocation ???
std.stdio the operator ~ may cause GC allocation ???
std.stdio every setting 'length' may cause GC allocation ???
std.stdio every operator ~= may cause GC allocation ???
std.stdio every operator ~= may cause GC allocation ???
std.stdio every operator ~= may cause GC allocation ???
std.stdio file 'new' causes GC allocation ???
std.stdio file 'new' causes GC allocation ???
std.stdio file 'new' causes GC allocation ???
std.stdio LockingTextReader.front 'new' causes GC allocation ???
std.stdio LockingTextReader.popFront 'new' causes GC allocation ???
std.stdio lines.f operator ~= may cause GC allocation ???
std.stdio lines.f setting 'length' may cause GC allocation ???
std.stdio lines.f 'new' causes GC allocation ???
std.stdio ChunksImpl.f 'new' causes GC allocation ???
std.stdio ChunksImpl.f 'new' causes GC allocation ???
std.stdio ChunksImpl.f setting 'length' may cause GC allocation ???
std.stdio with operator ~ may cause GC allocation ???
std.stdio with 'new' causes GC allocation ???
std.stdio with 'new' causes GC allocation ???
std.stdio readlnImpl setting 'length' may cause GC allocation ???
std.stdio readlnImpl operator ~= may cause GC allocation ???
std.stdio readlnImpl setting 'length' may cause GC allocation ???
std.stdio readlnImpl setting 'length' may cause GC allocation ???
std.stdio readlnImpl 'new' causes GC allocation ???
std.stdio readlnImpl 'new' causes GC allocation ???
std.stdio readlnImpl 'new' causes GC allocation ???
std.stdio readlnImpl operator ~ may cause GC allocation ???
std.stdio _popen operator ~ may cause GC allocation ???
std.stdio to operator ~ may cause GC allocation ???
std.stdio to operator ~ may cause GC allocation ???
std.stdio the operator ~ may cause GC allocation ???
std.stdio file operator ~ may cause GC allocation ???
std.stdio file operator ~ may cause GC allocation ???
std.stdio for operator ~ may cause GC allocation ???
std.stream ungetcw operator ~= may cause GC allocation ???
std.stream ungetcw operator ~= may cause GC allocation ???
std.stream writeExact 'new' causes GC allocation ???
std.stream flush setting 'length' may cause GC allocation ???
std.stream string 'new' causes GC allocation ???
std.stream string 'new' causes GC allocation ???
std.stream string setting 'length' may cause GC allocation ???
std.stream void 'new' causes GC allocation ???
std.stream void 'new' causes GC allocation ???
std.stream void 'new' causes GC allocation ???
std.stream source 'new' causes GC allocation ???
std.stream TreadLine(T) operator ~= may cause GC allocation ???
std.stream void 'new' causes GC allocation ???
std.stream open operator ~ may cause GC allocation ???
std.stream open 'new' causes GC allocation ???
std.stream open operator ~ may cause GC allocation ???
std.stream ulong 'new' causes GC allocation ???
std.stream this() 'new' causes GC allocation ???
std.stream filename 'new' causes GC allocation ???
std.stream hFile 'new' causes GC allocation ???
std.stream wchar setting 'length' may cause GC allocation ???
std.stream wchar 'new' causes GC allocation ???
std.stream wchar 'new' causes GC allocation ???
std.stream data 'new' causes GC allocation ???
std.stream reserve setting 'length' may cause GC allocation ???
std.stream void 'delete' requires GC ???
std.stream readExact 'new' causes GC allocation ???
std.stream readLine setting 'length' may cause GC allocation ???
std.stream readLine operator ~= may cause GC allocation ???
std.stream readLine setting 'length' may cause GC allocation ???
std.stream readLineW setting 'length' may cause GC allocation ???
std.stream readLineW operator ~= may cause GC allocation ???
std.stream readLineW setting 'length' may cause GC allocation ???
std.stream readString 'new' causes GC allocation ???
std.stream readStringW 'new' causes GC allocation ???
std.stream getc setting 'length' may cause GC allocation ???
std.stream getcw setting 'length' may cause GC allocation ???
std.stream getcw 'new' causes GC allocation ???
std.stream ungetc setting 'length' may cause GC allocation ???
std.stream ungetc operator ~= may cause GC allocation ???
std.stream ungetcw setting 'length' may cause GC allocation ???
std.stream ungetcw operator ~= may cause GC allocation ???
std.string leftJustify 'new' causes GC allocation ???
std.string leftJustify 'new' causes GC allocation ???
std.string rightJustify 'new' causes GC allocation ???
std.string rightJustify 'new' causes GC allocation ???
std.string center 'new' causes GC allocation ???
std.string center 'new' causes GC allocation ???
std.string detab setting 'length' may cause GC allocation ???
std.string detab setting 'length' may cause GC allocation ???
std.string toStringz 'new' causes GC allocation ???
std.string detab setting 'length' may cause GC allocation ???
std.string entab setting 'length' may cause GC allocation ???
std.string entab setting 'length' may cause GC allocation ???
std.string entab setting 'length' may cause GC allocation ???
std.string entab setting 'length' may cause GC allocation ???
std.string translateImpl indexing an associative array may cause GC allocation ???
std.string translate 'new' causes GC allocation ???
std.string makeTrans 'new' causes GC allocation ???
std.string format 'new' causes GC allocation ???
std.string sformat using closure causes GC allocation ???
std.string sformat 'new' causes GC allocation ???
std.string succ 'new' causes GC allocation ???
std.string soundex 'new' causes GC allocation ???
std.string abbrev indexing an associative array may cause GC allocation ???
std.string abbrev indexing an associative array may cause GC allocation ???
std.string wrap setting 'length' may cause GC allocation ???
std.string wrap setting 'length' may cause GC allocation ???
std.string wrap operator ~= may cause GC allocation ???
std.string wrap operator ~= may cause GC allocation ???
std.string wrap operator ~= may cause GC allocation ???
std.string wrap operator ~= may cause GC allocation ???
std.string wrap operator ~= may cause GC allocation ???
std.string wrap operator ~= may cause GC allocation ???
std.string wrap operator ~= may cause GC allocation ???
std.string wrap operator ~= may cause GC allocation ???
std.string wrap operator ~= may cause GC allocation ???
std.string outdent 'new' causes GC allocation ???
std.syserror SysError.msg 'new' causes GC allocation ???
std.traits **** operator ~= may cause GC allocation ???
std.traits **** operator ~= may cause GC allocation ???
std.traits **** operator ~= may cause GC allocation ???
std.traits **** operator ~= may cause GC allocation ???
std.traits **** operator ~= may cause GC allocation ???
std.traits **** operator ~= may cause GC allocation ???
std.traits **** operator ~= may cause GC allocation ???
std.traits **** operator ~= may cause GC allocation ???
std.traits **** operator ~= may cause GC allocation ???
std.traits **** operator ~= may cause GC allocation ???
std.traits **** operator ~= may cause GC allocation ???
std.traits **** operator ~= may cause GC allocation ???
std.traits **** operator ~= may cause GC allocation ???
std.traits **** operator ~= may cause GC allocation ???
std.traits **** operator ~= may cause GC allocation ???
std.traits **** operator ~= may cause GC allocation ???
std.traits **** operator ~= may cause GC allocation ???
std.traits std indexing an associative array may cause GC allocation ???
std.traits std associative array literal may cause GC allocation ???
std.traits isExpressionTuple.if associative array literal may cause GC allocation ???
std.traits fqnType.parametersTypeString array literal may cause GC allocation ???
std.traits fqnType.parametersTypeString array literal may cause GC allocation ???
std.traits fqnType.parametersTypeString operator ~= may cause GC allocation ???
std.typecons alignForSize operator ~ may cause GC allocation ???
std.typecons alignForSize operator ~= may cause GC allocation ???
std.typecons alignForSize operator ~ may cause GC allocation ???
std.typecons alignForSize operator ~= may cause GC allocation ???
std.typecons alignForSize operator ~ may cause GC allocation ???
std.typecons alignForSize operator ~= may cause GC allocation ???
std.typecons alignForSize operator ~ may cause GC allocation ???
std.typecons alignForSize operator ~= may cause GC allocation ???
std.typecons if 'delete' requires GC ???
std.typecons NotImplementedError.method operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~ may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons **** operator ~= may cause GC allocation ???
std.typecons **** array literal may cause GC allocation ???
std.typecons wrap.wrap(Source) 'new' causes GC allocation ???
std.typecons wrap.wrap(Source) operator ~= may cause GC allocation ???
std.typecons wrap.wrap(Source) operator ~= may cause GC allocation ???
std.typecons wrap.wrap(Source) operator ~= may cause GC allocation ???
std.typecons wrap.wrap(Source) operator ~= may cause GC allocation ???
std.typecons wrap.wrap(Source) operator ~= may cause GC allocation ???
std.typecons wrap.wrap(Source) operator ~= may cause GC allocation ???
std.typecons wrap.wrap(Source) operator ~= may cause GC allocation ???
std.typecons wrap.wrap(Source) operator ~= may cause GC allocation ???
std.typecons wrap.wrap(Source) operator ~= may cause GC allocation ???
std.typecons Tuple.injectNamedFields operator ~= may cause GC allocation ???
std.typecons Tuple.injectNamedFields operator ~= may cause GC allocation ???
std.uni genUnrolledSwitchSearch operator ~= may cause GC allocation ???
std.uni genUnrolledSwitchSearch operator ~= may cause GC allocation ???
std.uni genUnrolledSwitchSearch operator ~= may cause GC allocation ???
std.uni GcPolicy.alloc 'new' causes GC allocation ???
std.uni GcPolicy.realloc setting 'length' may cause GC allocation ???
std.uni GcPolicy.append operator ~= may cause GC allocation ???
std.uni InversionList.set operator ~= may cause GC allocation ???
std.uni InversionList.set operator ~= may cause GC allocation ???
std.uni InversionList.inverted array literal may cause GC allocation ???
std.uni InversionList.inverted array literal may cause GC allocation ???
std.uni InversionList.toSourceCode operator ~ may cause GC allocation ???
std.uni InversionList.toSourceCode operator ~ may cause GC allocation ???
std.uni InversionList.toSourceCode operator ~= may cause GC allocation ???
std.uni InversionList.toSourceCode operator ~= may cause GC allocation ???
std.uni InversionList.toSourceCode operator ~= may cause GC allocation ???
std.uni InversionList.toSourceCode operator ~= may cause GC allocation ???
std.uni InversionList.toSourceCode operator ~= may cause GC allocation ???
std.uni InversionList.toSourceCode operator ~ may cause GC allocation ???
std.uni InversionList.toSourceCode operator ~ may cause GC allocation ???
std.uni InversionList.toSourceCode operator ~= may cause GC allocation ???
std.uni InversionList.toSourceCode operator ~= may cause GC allocation ???
std.uni InversionList.toSourceCode operator ~= may cause GC allocation ???
std.uni InversionList.toSourceCode operator ~ may cause GC allocation ???
std.uni InversionList.toSourceCode operator ~= may cause GC allocation ???
std.uni InversionList.toSourceCode operator ~= may cause GC allocation ???
std.uni InversionList.dropUpTo array literal may cause GC allocation ???
std.uni InversionList.skipUpTo array literal may cause GC allocation ???
std.uni Utf8Matcher.badEncoding 'new' causes GC allocation ???
std.uni Utf8Matcher.template operator ~= may cause GC allocation ???
std.uni Utf8Matcher.template operator ~= may cause GC allocation ???
std.uni Utf8Matcher.template operator ~= may cause GC allocation ???
std.uni Utf16Matcher.badEncoding 'new' causes GC allocation ???
std.uni toDelegate using closure causes GC allocation ???
std.uni compressTo operator ~= may cause GC allocation ???
std.uni compressTo operator ~= may cause GC allocation ???
std.uni compressTo operator ~= may cause GC allocation ???
std.uni compressTo operator ~= may cause GC allocation ???
std.uni compressTo operator ~= may cause GC allocation ???
std.uni compressTo operator ~= may cause GC allocation ???
std.uni isPrettyPropertyName array literal may cause GC allocation ???
std.uni SetSearcher.opCall 'new' causes GC allocation ???
std.uni SetSearcher.opCall operator ~ may cause GC allocation ???
std.uni unicode.loadAny 'new' causes GC allocation ???
std.uni unicode.loadAny operator ~ may cause GC allocation ???
std.uni enum operator ~= may cause GC allocation ???
std.uni enum operator ~= may cause GC allocation ???
std.uni enum setting 'length' may cause GC allocation ???
std.uni enum setting 'length' may cause GC allocation ???
std.uni enum setting 'length' may cause GC allocation ???
std.uni encodeTo 'new' causes GC allocation ???
std.uni toCaseInPlaceAlloc.toCaseInPlaceAlloc 'new' causes GC allocation ???
std.uni MultiArray.sizes 'new' causes GC allocation ???
std.uni MultiArray.n setting 'length' may cause GC allocation ???
std.uni MultiArray.n setting 'length' may cause GC allocation ???
std.uri URI_Encode 'new' causes GC allocation ???
std.uri URI_Encode 'new' causes GC allocation ???
std.uri URI_Encode 'new' causes GC allocation ???
std.uri URI_Encode 'new' causes GC allocation ???
std.uri URI_Encode 'new' causes GC allocation ???
std.uri URI_Decode 'new' causes GC allocation ???
std.uri URI_Decode 'new' causes GC allocation ???
std.uri URI_Decode 'new' causes GC allocation ???
std.uri URI_Decode 'new' causes GC allocation ???
std.uri URI_Decode 'new' causes GC allocation ???
std.uri URI_Decode 'new' causes GC allocation ???
std.uri URI_Decode 'new' causes GC allocation ???
std.uri URI_Decode 'new' causes GC allocation ???
std.uri URI_Decode 'new' causes GC allocation ???
std.uri URI_Decode 'new' causes GC allocation ???
std.uri URI_Decode 'new' causes GC allocation ???
std.uri URIException.nothrow operator ~ may cause GC allocation ???
std.utf decodeImpl 'new' causes GC allocation ???
std.utf decodeImpl 'new' causes GC allocation ???
std.utf decodeImpl 'new' causes GC allocation ???
std.utf decodeImpl 'new' causes GC allocation ???
std.utf decodeImpl 'new' causes GC allocation ???
std.utf decodeImpl 'new' causes GC allocation ???
std.utf decodeImpl 'new' causes GC allocation ???
std.utf decodeImpl 'new' causes GC allocation ???
std.utf decodeImpl 'new' causes GC allocation ???
std.utf decodeImpl 'new' causes GC allocation ???
std.utf decodeImpl 'new' causes GC allocation ???
std.utf decodeImpl 'new' causes GC allocation ???
std.utf decodeImpl 'new' causes GC allocation ???
std.utf decodeImpl 'new' causes GC allocation ???
std.utf decodeImpl 'new' causes GC allocation ???
std.utf encode 'new' causes GC allocation ???
std.utf encode 'new' causes GC allocation ???
std.utf encode 'new' causes GC allocation ???
std.utf encode 'new' causes GC allocation ???
std.utf encode operator ~= may cause GC allocation ???
std.utf encode 'new' causes GC allocation ???
std.utf encode 'new' causes GC allocation ???
std.utf encode operator ~= may cause GC allocation ???
std.utf encode 'new' causes GC allocation ???
std.utf encode operator ~= may cause GC allocation ???
std.utf encode operator ~= may cause GC allocation ???
std.utf encode 'new' causes GC allocation ???
std.utf encode 'new' causes GC allocation ???
std.utf encode operator ~= may cause GC allocation ???
std.utf strideImpl 'new' causes GC allocation ???
std.utf toUTF8 setting 'length' may cause GC allocation ???
std.utf toUTF8 setting 'length' may cause GC allocation ???
std.utf toUTF8 setting 'length' may cause GC allocation ???
std.utf toUTF8 setting 'length' may cause GC allocation ???
std.utf toUTF16 setting 'length' may cause GC allocation ???
std.utf toUTF16 setting 'length' may cause GC allocation ???
std.utf toUTF16 operator ~= may cause GC allocation ???
std.utf wstring setting 'length' may cause GC allocation ???
std.utf wstring setting 'length' may cause GC allocation ???
std.utf toUTF32 setting 'length' may cause GC allocation ???
std.utf toUTF32 setting 'length' may cause GC allocation ???
std.utf toUTFzImpl array literal may cause GC allocation ???
std.utf toUTFzImpl operator ~= may cause GC allocation ???
std.utf nothrow 'new' causes GC allocation ???
std.utf nothrow 'new' causes GC allocation ???
std.utf nothrow 'new' causes GC allocation ???
std.utf strideBack 'new' causes GC allocation ???
std.utf strideBack 'new' causes GC allocation ???
std.utf UTFException.msg operator ~ may cause GC allocation ???
std.utf UTFException.string operator ~= may cause GC allocation ???
std.utf toUCSindex 'new' causes GC allocation ???
std.utf toUCSindex 'new' causes GC allocation ???
std.utf UTFException.string operator ~= may cause GC allocation ???
std.utf UTFException.string operator ~= may cause GC allocation ???
std.uuid parseUUID 'new' causes GC allocation ???
std.uuid parseUUID 'new' causes GC allocation ???
std.uuid parseUUID 'new' causes GC allocation ???
std.uuid **** 'new' causes GC allocation ???
std.uuid **** 'new' causes GC allocation ???
std.uuid **** 'new' causes GC allocation ???
std.uuid **** 'new' causes GC allocation ???
std.uuid **** 'new' causes GC allocation ???
std.variant variantArray operator ~= may cause GC allocation ???
std.variant VariantException operator ~ may cause GC allocation ???
std.variant visitImpl 'new' causes GC allocation ???
std.variant VariantN.handler 'new' causes GC allocation ???
std.variant VariantN.handler 'new' causes GC allocation ???
std.variant VariantN.handler 'new' causes GC allocation ???
std.variant VariantN.handler indexing an associative array may cause GC allocation ???
std.variant VariantN.handler 'new' causes GC allocation ???
std.variant VariantN.handler indexing an associative array may cause GC allocation ???
std.variant VariantN.handler 'new' causes GC allocation ???
std.variant VariantN.handler operator ~= may cause GC allocation ???
std.variant VariantN.handler array literal may cause GC allocation ???
std.variant VariantN.handler operator ~= may cause GC allocation ???
std.variant VariantN.handler array literal may cause GC allocation ???
std.variant VariantN.handler operator ~= may cause GC allocation ???
std.variant VariantN.handler array literal may cause GC allocation ???
std.variant VariantN.handler operator ~= may cause GC allocation ???
std.variant VariantN.handler array literal may cause GC allocation ???
std.variant VariantN.handler operator ~= may cause GC allocation ???
std.variant VariantN.handler array literal may cause GC allocation ???
std.variant VariantN.handler operator ~= may cause GC allocation ???
std.variant VariantN.handler array literal may cause GC allocation ???
std.variant VariantN.handler operator ~= may cause GC allocation ???
std.variant VariantN.handler array literal may cause GC allocation ???
std.variant VariantN.handler operator ~= may cause GC allocation ???
std.variant VariantN.handler array literal may cause GC allocation ???
std.variant VariantN.handler operator ~= may cause GC allocation ???
std.variant VariantN.handler array literal may cause GC allocation ???
std.variant VariantN.handler operator ~= may cause GC allocation ???
std.variant VariantN.handler array literal may cause GC allocation ???
std.variant VariantN.handler operator ~= may cause GC allocation ???
std.variant VariantN.handler array literal may cause GC allocation ???
std.variant VariantN.handler operator ~= may cause GC allocation ???
std.variant VariantN.handler array literal may cause GC allocation ???
std.variant VariantN.handler operator ~= may cause GC allocation ???
std.variant VariantN.handler 'new' causes GC allocation ???
std.variant VariantN.handler 'new' causes GC allocation ???
std.variant VariantN.opAssign 'new' causes GC allocation ???
std.variant VariantN.get 'new' causes GC allocation ???
std.variant VariantN.get 'new' causes GC allocation ???
std.variant VariantN.value 'new' causes GC allocation ???
std.variant VariantN.opArithmetic 'new' causes GC allocation ???
std.xml Tag.tagString operator ~ may cause GC allocation ???
std.xml Tag.tagString operator ~ may cause GC allocation ???
std.xml Tag.string operator ~ may cause GC allocation ???
std.xml Tag.string operator ~ may cause GC allocation ???
std.xml Tag.string indexing an associative array may cause GC allocation ???
std.xml Tag.string 'new' causes GC allocation ???
std.xml Tag.string setting 'length' may cause GC allocation ???
std.xml Tag.string setting 'length' may cause GC allocation ???
std.xml Tag.string 'new' causes GC allocation ???
std.xml Tag.const operator ~ may cause GC allocation ???
std.xml Tag.const operator ~= may cause GC allocation ???
std.xml Tag.const operator ~ may cause GC allocation ???
std.xml Tag.const operator ~ may cause GC allocation ???
std.xml Tag.const operator ~ may cause GC allocation ???
std.xml Comment.content 'new' causes GC allocation ???
std.xml Comment.string operator ~ may cause GC allocation ???
std.xml CData.content 'new' causes GC allocation ???
std.xml CData.string operator ~ may cause GC allocation ???
std.xml XMLInstruction.content 'new' causes GC allocation ???
std.xml XMLInstruction.string operator ~ may cause GC allocation ???
std.xml ProcessingInstruction.content 'new' causes GC allocation ???
std.xml ProcessingInstruction.string operator ~ may cause GC allocation ???
std.xml Item.pretty array literal may cause GC allocation ???
std.xml DocumentParser.xmlText_ operator ~ may cause GC allocation ???
std.xml ElementParser.parse indexing an associative array may cause GC allocation ???
std.xml ElementParser.parse 'new' causes GC allocation ???
std.xml ElementParser.parse indexing an associative array may cause GC allocation ???
std.xml ElementParser.parse 'new' causes GC allocation ???
std.xml ElementParser.parse indexing an associative array may cause GC allocation ???
std.xml ElementParser.parse 'new' causes GC allocation ???
std.xml ElementParser.parse 'new' causes GC allocation ???
std.xml ElementParser.parse 'new' causes GC allocation ???
std.xml ElementParser.parse indexing an associative array may cause GC allocation ???
std.xml ElementParser.parse 'new' causes GC allocation ???
std.xml ElementParser.parse 'new' causes GC allocation ???
std.xml ElementParser.msg 'new' causes GC allocation ???
std.xml ElementParser.msg 'new' causes GC allocation ???
std.xml ElementParser.msg 'new' causes GC allocation ???
std.xml ElementParser.checkAttValue operator ~ may cause GC allocation ???
std.xml ElementParser.checkElement operator ~ may cause GC allocation ???
std.xml ElementParser.checkLiteral operator ~ may cause GC allocation ???
std.xml ElementParser.checkEnd 'new' causes GC allocation ???
std.xml ElementParser.checkEnd operator ~ may cause GC allocation ???
std.xml check 'new' causes GC allocation ???
std.xml CheckException.string operator ~= may cause GC allocation ???
std.xml CheckException.string operator ~= may cause GC allocation ???
std.xml CheckException.string operator ~ may cause GC allocation ???
std.xml Err 'new' causes GC allocation ???
std.xml Err 'new' causes GC allocation ???
std.xml Err operator ~= may cause GC allocation ???
std.xml Err operator ~= may cause GC allocation ???
std.xml Err 'new' causes GC allocation ???
std.xml decode operator ~= may cause GC allocation ???
std.xml decode operator ~= may cause GC allocation ???
std.xml decode 'new' causes GC allocation ???
std.xml decode operator ~= may cause GC allocation ???
std.xml decode operator ~= may cause GC allocation ???
std.xml decode operator ~= may cause GC allocation ???
std.xml decode operator ~= may cause GC allocation ???
std.xml decode operator ~= may cause GC allocation ???
std.xml decode operator ~= may cause GC allocation ???
std.xml decode 'new' causes GC allocation ???
std.xml decode operator ~= may cause GC allocation ???
std.xml Document.s 'new' causes GC allocation ???
std.xml Document.const operator ~ may cause GC allocation ???
std.xml Element.name 'new' causes GC allocation ???
std.xml Element.name 'new' causes GC allocation ???
std.xml Element.tag_ 'new' causes GC allocation ???
std.xml Element.tag_ indexing an associative array may cause GC allocation ???
std.xml Element.opCatAssign operator ~= may cause GC allocation ???
std.xml Element.opCatAssign operator ~= may cause GC allocation ???
std.xml Element.opCatAssign operator ~= may cause GC allocation ???
std.xml Element.opCatAssign operator ~= may cause GC allocation ???
std.xml Element.opCatAssign operator ~= may cause GC allocation ???
std.xml Element.appendItem operator ~= may cause GC allocation ???
std.xml Element.parse using closure causes GC allocation ???
std.xml Element.parse 'new' causes GC allocation ???
std.xml Element.parse 'new' causes GC allocation ???
std.xml Element.parse 'new' causes GC allocation ???
std.xml Element.parse 'new' causes GC allocation ???
std.xml Element.parse indexing an associative array may cause GC allocation ???
std.xml Element.parse 'new' causes GC allocation ???
std.xml Element.const 'new' causes GC allocation ???
std.xml Element.const operator ~= may cause GC allocation ???
std.xml Element.const array literal may cause GC allocation ???
std.xml Element.const array literal may cause GC allocation ???
std.xml Element.const operator ~ may cause GC allocation ???
std.xml Element.const array literal may cause GC allocation ???
std.xml Element.const operator ~= may cause GC allocation ???
std.xml Element.const operator ~= may cause GC allocation ???
std.xml Element.const operator ~= may cause GC allocation ???
std.xml Element.const operator ~= may cause GC allocation ???
std.zip ArchiveMember.expandedData setting 'length' may cause GC allocation ???
std.zip ArchiveMember.compressionMethod 'new' causes GC allocation ???
std.zip ZipArchive.addMember indexing an associative array may cause GC allocation ???
std.zip ZipArchive.build 'new' causes GC allocation ???
std.zip ZipArchive.build 'new' causes GC allocation ???
std.zip ZipArchive.build 'new' causes GC allocation ???
std.zip ZipException.msg operator ~ may cause GC allocation ???
std.zip ZipArchive.buffer 'new' causes GC allocation ???
std.zip ZipArchive.buffer 'new' causes GC allocation ???
std.zip ZipArchive.buffer 'new' causes GC allocation ???
std.zip ZipArchive.buffer 'new' causes GC allocation ???
std.zip ZipArchive.buffer 'new' causes GC allocation ???
std.zip ZipArchive.buffer 'new' causes GC allocation ???
std.zip ZipArchive.buffer 'new' causes GC allocation ???
std.zip ZipArchive.buffer indexing an associative array may cause GC allocation ???
std.zip ZipArchive.buffer 'new' causes GC allocation ???
std.zip ZipArchive.expand 'new' causes GC allocation ???
std.zip ZipArchive.expand 'new' causes GC allocation ???
std.zip ZipArchive.expand 'new' causes GC allocation ???
std.zip ZipArchive.expand 'new' causes GC allocation ???
std.zlib compress 'new' causes GC allocation ???
std.zlib compress 'delete' requires GC ???
std.zlib compress 'new' causes GC allocation ???
std.zlib compress setting 'length' may cause GC allocation ???
std.zlib uncompress 'new' causes GC allocation ???
std.zlib uncompress setting 'length' may cause GC allocation ???
std.zlib uncompress setting 'length' may cause GC allocation ???
std.zlib uncompress 'new' causes GC allocation ???
std.zlib uncompress 'new' causes GC allocation ???
std.zlib Compress.error 'new' causes GC allocation ???
std.zlib Compress.compress 'new' causes GC allocation ???
std.zlib Compress.compress operator ~ may cause GC allocation ???
std.zlib Compress.compress 'delete' requires GC ???
std.zlib Compress.compress setting 'length' may cause GC allocation ???
std.zlib Compress.flush operator ~= may cause GC allocation ???
std.zlib Compress.flush 'delete' requires GC ???
std.zlib Compress.flush operator ~= may cause GC allocation ???
std.zlib UnCompress.error 'new' causes GC allocation ???
std.zlib UnCompress.uncompress 'new' causes GC allocation ???
std.zlib UnCompress.uncompress operator ~ may cause GC allocation ???
std.zlib UnCompress.uncompress 'delete' requires GC ???
std.zlib UnCompress.uncompress setting 'length' may cause GC allocation ???
std.zlib UnCompress.flush 'new' causes GC allocation ???
std.zlib UnCompress.flush operator ~= may cause GC allocation ???
std.zlib UnCompress.flush 'delete' requires GC ???
std.zlib UnCompress.flush operator ~ may cause GC allocation ???