これはshapelessはHList
への変換を含む、ジェネリックな方法で行うことができますものの一種です。
First - get shapeless。そして、依存方法の種類と実行Scalaは(2.10ではデフォルトでオン)オン:
C:\Scala\sdk\scala-2.9.2\bin>scala -Ydependent-method-types
Welcome to Scala version 2.9.2 (Java HotSpot(TM) 64-Bit Server VM, Java 1.7.0_04).
Type in expressions to have them evaluated.
Type :help for more information.
は、クラスパスに型崩れ追加:
scala> :cp C:\Users\cmarsha\Downloads\shapeless_2.9.2-1.2.2.jar
Added 'C:\Users\cmarsha\Downloads\shapeless_2.9.2-1.2.2.jar'. Your new classpath is:
"C:\tibco\tibrv\8.2\lib\tibrvnative.jar;C:\Users\cmarsha\Downloads\shapeless_2.9.2-1.2.2.jar"
は、今私たちがプレイしましょう!
scala> (1, 2.3, 'a, 'b', "c", true)
res0: (Int, Double, Symbol, Char, java.lang.String, Boolean) = (1,2.3,'a,b,c,true)
我々はHList
scala> res0.hlisted
res2: shapeless.::[Int,shapeless.::[Double,shapeless.::[Symbol,shapeless.::[Char,shapeless.::[java.lang.String,shapeless.::[Boolean,shapeless.HNil]]]]]] = 1 :: 2.3 :: 'a :: b :: c :: true :: HNil
に私達のタプルを回し型崩れ
scala> import shapeless._; import Tuples._; import Nat._
import shapeless._
import Tuples._
import Nat._
をインポートする必要がありますその後、我々は、_4
typeパラメータであることに注意してください(最初の4ない取りますメソッド引数)
scala> res2.take[_4]
res4: shapeless.::[Int,shapeless.::[Double,shapeless.::[Symbol,shapeless.::[Char, shapeless.HNil]]]] = 1 :: 2.3 :: 'a :: b :: HNil
今、私たちは、これを短縮することができ、バックタプル
scala> res4.tupled
res5: (Int, Double, Symbol, Char) = (1,2.3,'a,b)
への変換:もちろん
val (a, b, c, d) = sixtuple.hlisted.take[_4].tupled
//a, b, c and d would all have the correct inferred type
これは
これは[shapeless](https://github.com/milessabin/shapeless) 'HList'で行うことができると思います。 [この質問](http://stackoverflow.com/questions/9028459/a-clean-way-to-combine-two-tuples-into-a-new-larger-tuple-in-scala)を見てください。 – incrop