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.
Java では、次のようなことができます。
ObservableStringValue str = ...; Binding<Integer> strLen = EasyBind.map(str, String::length);
String::lengthインスタンスメソッドが関数として使用されている場所。Scalaに同等のフォームはありますか? (さらに拡張すると、Scala で EasyBind を使用する同等の方法)
String::length
scala> "dsfs".toString _ res1: () => String = <function0>