Contiguous/README.md
2023-05-24 22:16:57 +02:00

478 B

Design decisions

  • built for speed and efficiency (within java)

  • uses SQLite storage with 1 exception: float is stored as f32

  • needs jdk 9 (VarHandles)

  • minimal reflection (once per creation of the list)

  • The only class (for now): ContiguousList

  • Still in a very early stage

    • the code is working
    • but it remains to be seen if this is a good idea