我在本文中找到以下代碼(http://hseeberger.wordpress.com/2010/11/25/introduction-to-category-theory-in-scala/)。Scala中難以理解的語法
trait GenericCategory[->>[_, _]] {
def id[A]: A ->> A
def compose[A, B, C](g: B ->> C, f: A ->> B): A ->> C
}
我想不通的語法旁邊的特質的名字
[->>[_,_]]
可能的重複[在Scala類型參數,有什麼 - >>和 - >>>是什麼意思?](http://stackoverflow.com/questions/9050107/in-scala-type-parameters-what-do-和 - 均值) – 2013-04-10 13:05:41
與單個參數的方法一樣,兩個參數的泛型類型/類型構造函數可以以中綴形式使用。這可能會讓這個名字更加明智一些,因爲它大概是以這種方式使用的。 – 2013-04-10 16:12:18