Skip to content

v0.22.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 05 Mar 14:36
· 2298 commits to 55760292e470954887b77d89164ca373175b950b since this release

Updates from v0.21.0

  • Updated
    • Supported a pipeline and a function compoition operator.
      See a pipeline, a function composition, and a library of Functional for details.
      • Supported a pipeline operator of a |> b which is just same as b(a).
      • Supported a pipeline operator of a <| b which is just same as a(b).
      • Supported a function composition operator of a +> b which is like { => b(a(_1)) }.
      • Supported a function composition operator of a <+ b which is like { => a(b(_1)) }.
    • Supported to read/write from/to Clipboard.
      • By var cb = new Clipboard();, then you can:
        • Use cb.write(str) to write str to clipboard, or
        • Use cb.read() to read a text from clipboard.
    • Documentation & SpecTest complete.
      • The documents which was planned was prepared at least, although the quality should be increased.
    • Some bug fixes and improvements.