Skip to content

v0.2.0

Compare
Choose a tag to compare
@manuel-mauky manuel-mauky released this 17 Sep 20:47
· 34 commits to master since this release

LogicBindings

  • or - boolean OR binding with variable number of dependent observable boolean values.
  • and - boolean AND binding with variable number of dependent observable boolean values.

NumberBindings

  • divideSafe - divide binding that doesn't throw ArithmeticException when division by zero occurs. Instead 0 or a user defined value is used for the binding.

ObjectBindings

  • map - takes a function that is applied to the value of the source observable and the result is used for the result binding. This binding is null-safe: no NullPointerException is thrown even when the source observable contains null.