DataOrientedDesign icon indicating copy to clipboard operation
DataOrientedDesign copied to clipboard

Sample codes from my Lectures and Trainings on DoD

Results 1 DataOrientedDesign issues
Sort by recently updated
recently updated
newest added

Two dimensional array access should be similar to: `array[(rowIndex * columnCount) + columnIndex]` But for example: https://github.com/badamczewski/DataOrientedDesign/blob/49c1a08606078737c85ec754ddfd90f5b25bbc17/DoDSamples/Samples/Benchmarks/RowsVsCols.cs#L33-L39 which is `array[(columnIndex * columnCount) + rowIndex]` The results seem to be aligned...