Skip to content

Releases: ilammy/fluid-let

fluid-let 1.0.0

12 Oct 12:49
v1.0.0
50b3925
Compare
Choose a tag to compare

Stabilizing the API! 🎉

New features:

  • Convenience getters copied() and cloned() for copyable types.
  • Convenience setter fluid_set! for scoped assignment.

Unstable features:

  • "static-init" Cargo feature
    • fluid_let! allows 'static initializers:
      fluid_let!(static VARIABLE: Type = initial_value);

fluid-let 0.1.0

12 Mar 18:06
Compare
Choose a tag to compare

Initial release of fluid-let.

  • fluid_let! macro for defining global dynamically-scoped variables.
  • get() and set() methods with closure-based interface for querying and modifying the dynamic environment.