Skip to content

v0.0.4

Compare
Choose a tag to compare
@benbrimeyer benbrimeyer released this 05 Apr 21:33
· 14 commits to master since this release

Refactored library with the current philosophy:

  • Be type safe. Types are represented in such that there are no false negative type errors.
  • Be runtime safe. Errors will not propagate unless you are passing invalid values that the Luau type checker would have caught.
  • Enforce immutability via table.frozen
  • Optimize return values if no changes were made within the operation by returning the original value.

Resolved bugs

  • Fixed issue with List.concat not ignoring nil arguments.
  • Added compatibility layer for old missing Llama functions. These will be removed for the 1.0 release.

Other

  • More fencing around unit testing.
  • Documentation updated.