...ing logging 4.0

はてなブログに移行しました。D言語の話とかいろいろ。

2011-12-15から1日間の記事一覧

何だかうまく書けない

final class Lexer { class LexerThread : Thread { private const(string)[] lines; private Appender!(string[]) app; this(const(string)[] lines) { this.lines = lines; app = appender!(string[])(); app.reserve(10000); super(&run); } void run() {…