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.
複数の暗黙的な引数を持つ関数を定義するにはどうすればよいですか。
def myfun(arg:String)(implicit p1: String)(implicit p2:Int)={} // doesn't work
それらはすべて1つのパラメータリストに含まれている必要があり、このリストは最後のリストである必要があります。
def myfun(arg:String)(implicit p1: String, p2:Int)={}