On Friday, 15 August 2025 at 17:38:53 UTC, Marc wrote: > Hello, > In my typed data frames I've this type of code. It works for > default value (float) but I can't call `opIndex!double[i, j]` > or `opIndex!string[i,j]`. You need to write `opIndex!double(i, j)` to manually call the method. (You're using square brackets).