Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 632 Bytes

README.md

File metadata and controls

20 lines (18 loc) · 632 Bytes

OS F15 Libraries

Current libraries:

  • bitmap (v1.0)
    • It's a bitmap!
    • v2 wishlist:
      • Overlay: import but use given buffer instead of allocating an internal one
      • FLZ/FLS
      • Better FFZ/FFS
      • Parameter checking
        • Just never give us a bad pointer or bit address and it's fine :p
  • dyn_array (v1.2)
    • It's a vector, it's a stack, it's a deque, it's all your hopes and dreams!
    • Supports destructors! Function pointers are fun.
    • v2 wishlist:
      • Inserting/removing n objects at a time
        • Dyn's core already supports this, the API doesn't.
          • I didn't want to write more unit tests...

-- Will, the best TA