Documentation

and()

Combines this binding with another using AND semantics.

and(other: Binding): Binding<T>;

Summary

Returns the last value if both are truthy, otherwise returns the first falsy value.

Parameters

Return value

A new binding with AND logic applied

Related