v0.22.0
Pre-release
Pre-release
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 asb(a)
. - Supported a pipeline operator of
a <| b
which is just same asa(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 a pipeline operator of
- Supported to read/write from/to Clipboard.
- By
var cb = new Clipboard();
, then you can:- Use
cb.write(str)
to writestr
to clipboard, or - Use
cb.read()
to read a text from clipboard.
- Use
- By
- Documentation & SpecTest complete.
- The documents which was planned was prepared at least, although the quality should be increased.
- Some bug fixes and improvements.
- Supported a pipeline and a function compoition operator.