├── BUILD ├── LICENSE ├── README.md ├── WORKSPACE ├── include ├── .DS_Store ├── mapped_soa.h └── soa.h └── soa_example.cc /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunarsong/StructureOfArrays/HEAD/BUILD -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunarsong/StructureOfArrays/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunarsong/StructureOfArrays/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunarsong/StructureOfArrays/HEAD/include/.DS_Store -------------------------------------------------------------------------------- /include/mapped_soa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunarsong/StructureOfArrays/HEAD/include/mapped_soa.h -------------------------------------------------------------------------------- /include/soa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunarsong/StructureOfArrays/HEAD/include/soa.h -------------------------------------------------------------------------------- /soa_example.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunarsong/StructureOfArrays/HEAD/soa_example.cc --------------------------------------------------------------------------------