Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JavaFX では、 andPropertyを介して null または非 null のブールバインディングを取得できます。val.isNull()val.isNonNull()
Property
val.isNull()
val.isNonNull()
ReactFX でこれに相当するものは何ですか?
私はもう試した:
val.map(v -> v == null)
ただし、代わりにVal<Boolean>実際の値を含む a が返されます(これは他の場合に予想されることです)。nulltrue
Val<Boolean>
null
true