On 01/09/2024 4:34 AM, Lance Bachmeier wrote:
On Saturday, 31 August 2024 at 15:38:49 UTC, ryuukk_ wrote:
Let's see how other languages do it:

```zig
    map.put("hello", 42);

    // get pointer
    if (map.get("hello")) |*it| {
        std.log.debug("{}", .{it});
    }

    // get value
    if (map.get("hello")) |it| {
        std.log.debug("{}", .{it});
    }
```

No imports, no templates, ONE LINER

Please submit PRs to DMD, not phobos

It's good you're not in charge here because that is hideous.

Hey now, there is no need to get personal, ryuukk is evaluating out ideas and there is nothing wrong with this.
  • Associative Arra... ryuukk_ via Digitalmars-d-learn
    • Re: Associa... Steven Schveighoffer via Digitalmars-d-learn
      • Re: Ass... ryuukk_ via Digitalmars-d-learn
        • Re:... kdevel via Digitalmars-d-learn
    • Re: Associa... Paul Backus via Digitalmars-d-learn
      • Re: Ass... ryuukk_ via Digitalmars-d-learn
        • Re:... ryuukk_ via Digitalmars-d-learn
          • ... Lance Bachmeier via Digitalmars-d-learn
            • ... ryuukk_ via Digitalmars-d-learn
            • ... Richard (Rikki) Andrew Cattermole via Digitalmars-d-learn
          • ... Nick Treleaven via Digitalmars-d-learn
            • ... Nick Treleaven via Digitalmars-d-learn
            • ... Nick Treleaven via Digitalmars-d-learn
      • Re: Ass... kdevel via Digitalmars-d-learn
        • Re:... Paul Backus via Digitalmars-d-learn
          • ... ryuukk_ via Digitalmars-d-learn
            • ... evilrat via Digitalmars-d-learn

Reply via email to