Steven Schveighoffer

Results 100 issues of Steven Schveighoffer

gzcat beats the pants off of iopipe (like 2x+) when processing a concatenated gzipped file. Example file: ftp://ftp.1000genomes.ebi.ac.uk/vol1/ftp/release/20130502/ALL.chr22.phase3_shapeit2_mvncall_integrated_v5a.20130502.genotypes.vcf.gz Investigate why it's so much better, and try to incorporate Related: https://forum.dlang.org/post/[email protected]

performance

Currently, byLine requires char/wchar/dchar ranges to operate. However, the range operation itself is simply an array or element matching search. There is nothing to stop it from searching for an...

enhancement

Hard to explain, I'm not sure what's happening, but the examples seem to be incorrectly parsed: https://dlang.org/library/std/exception/assume_unique.html

Consider a property function: ```D /// Returns: The property value int prop() {...} ``` In the ddox overview, it shows a blank description for this method. In order to get...

~~If I have multiple overloads related functions that do similar things, and I want to document them cohesively as a group, then I can ddoc the first one, and write...

```pug a(href="/blah/blah" target="_blank") ``` results in a very long series of errors that aren't actually in the code. An example from my project: ``` job/edit.dt(417,51): Error: found `target` when expecting...

Live mode outputs strings surrounding all statements. I have some hackish things to fix issues with if statements and return statements. But two other statements that cannot have output of...

Looking at the way diet parses and processes files, I firmly believe that the cached version is the better version. First off, it's going to use WAY less CTFE, because...

An import or extend treats the file as if it were all the same (Right?) file in terms of generating the AST from the parsed file. In essence, including a...