Using phobos as shared library for multiple binaries

2015-12-05 Thread Ralf via Digitalmars-d-learn
Hi, I've written several small command-line utilities in D that are to be shipped together in one package. Each one of them only would be only a few kB in size, but they end up being ~1Mb, I assume because every one links statically parts of the standard library. How can this be improved?

Case-insensitive BoyerMooreFinder

2015-11-21 Thread Ralf via Digitalmars-d-learn
Hi, I just spend a day with the D programming language and I am very excited about being able to write such performant programs in such an clear and concise way! I tried to write a little search tool. The BoyerMooreFinder docs say that the comparison operator can be specified. Unfortunately,