-
It would be useful to add some folds/traversals over mutable arrays, like in [vector](https://hackage.haskell.org/package/vector-0.13.0.0/docs/Data-Vector-Generic-Mutable.html#g:11).
-
It is nice to use Immutable data classes to pass through bloc and atc
But it could be really nice to have Mutable data-classes version for some cases.
Could be nice to be able to generate Mutabl…
-
## ogion.art reported this on 2024-10-09T12:12:53Z
### Transfered from https://issues.dlang.org/show_bug.cgi?id=24801
### Description
````markdown
import std.range;
unittest {
static struct R
…
-
```Makes sense, it should probably be part of the `CONTRIBUTING.md` guidelines. Something like: first owned values, then mutable owned values, then immutable refs, then mutable refs, then closures.```…
-
```perl
#!/usr/bin/env perl
use strict;
use warnings;
use Data::Money;
my $debt = 90.00; # Debts are stored as positives in the database
my $debt_money = Data::Money->new(value => $debt…
-
To support not only subclassability (see #35) but the ability to use a custom subclass _as_ the built-in loader, should we allow `System.loader` (according to the discussion in #34 this seems to be th…
-
Reference: http://llvm.org/docs/tutorial/OCamlLangImpl7.html
-
Many read-only requests generated from navigating the console that people might want to filter out. This reduces output and makes it easier to identify which modifying requests are made.
-
This could be an advanced section with hazards all over it that discusses how to mutate R objects in place.
This is against the clone on write (Cow) rules of R. BUT if you created and own all of t…
-
I tried this code:
```rust
let mut i_copy = 14;
let i_copy = &i_copy as *mut i32;
```
I expected to see this happen: error out about invalid conversion:
```rust
error[E0606]: casting …