Search

January 20, 2024
Learn »
...main()
{
    auto names = [ "foo", "bar", "baz" ];
    void delegate()[] dgs;


    foreach (name; names)
    {
        (it) {
            dgs ~= () => writeln...
January 20, 2024
Learn »
...main()
{
    auto names = [ "foo", "bar", "baz" ];
    void delegate()[] dgs;

    foreach (name; names)
    {
        dgs ~= () => writeln(name...
January 20, 2024
Learn »
...indirection to the extent possible (I used delegate fields within a final class so the...
January 19, 2024
General »
Then I delegate anyone who uses Discord and thinks an issue there needs to be...
January 20, 2024
General »
...s the problem with leadership, you have to delegate, you can't do everything yourself.
January 19, 2024
Learn »
...double indirection.  I'd just return a delegate instead (single indirection, no object lookup).  This...
January 16, 2024
Learn »
...changed it
to take a delegate instead, and the delegate either counts the result or...
January 16, 2024
Learn »
...stored in this Trie.
     */
    void foreachEntry(void delegate(string path, string word) cb)
    {
        void impl...
January 16, 2024
Learn »
...stored in this Trie.
     */
    void foreachEntry(void delegate(string path, string word) cb)
    {
        void impl...
January 16, 2024
Learn »
...stored in this Trie.
     */
    void foreachEntry(void delegate(string path, string word) cb)
    {
        void impl...
14 15 16 17 18 19 20 21 22 23 24 25
Next ›   Last »