On Friday, 31 July 2026 at 13:52:12 UTC, Vindex9 wrote:
```d
string fn() @trusted pure {
    char[] arr;
    // some manipulations...
    return cast(string) arr;
}
```

Where is the line between cases where the `@trusted` tag can be used and cases where the `@system` tag can be used?

`@trusted` must have a memory-safe interface. So if the elements of `arr` cannot be accessed as mutable after the cast, it is OK to use `@trusted` to cast them to immutable.

`@system` is used for a function which does not have a safe interface (e.g. one that accepts a `char*` parameter pointing to a C zero-terminated string).
  • cast(string) for... Vindex9 via Digitalmars-d-learn
    • Re: cast(st... user1234 via Digitalmars-d-learn
      • Re: cas... H. S. Teoh via Digitalmars-d-learn
        • Re:... H. S. Teoh via Digitalmars-d-learn
      • Re: cas... Richard (Rikki) Andrew Cattermole via Digitalmars-d-learn
    • Re: cast(st... Nick Treleaven via Digitalmars-d-learn
    • Re: cast(st... Kagamin via Digitalmars-d-learn
      • Re: cas... Kagamin via Digitalmars-d-learn
        • Re:... Vindex9 via Digitalmars-d-learn
          • ... Jonathan M Davis via Digitalmars-d-learn
          • ... Vindex9 via Digitalmars-d-learn

Reply via email to