我想要这样的东西:
[String, Integer] values = SomeClass("Hi", 1).values();
[Boolean, Float] others = SomeClass(true, 2.0).values();
// EDIT - should return tuple with same type as the arguments list
[String] strs = SomeClass("Strings").values();
锡兰仿制药可以做到这一点吗?
我怀疑在阅读了关于 Ceylon currying 的内容后应该会出现类似的情况,但我现在无法弄清楚!