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.
私は Scala を初めて使用し、typeキーワードについて多くを見つけることができませんでした。次の表現が何を意味するのかを理解しようとしています。
type
type FunctorType = (LocalDate, HolidayCalendar, Int, Boolean) => LocalDate
FunctorTypeは一種のエイリアスですが、それは何を意味するのでしょうか?
FunctorType
「タイプ」をエイリアスとして使用する方法を確認するための単なる例:
type Action = () => Unit
上記の定義では、空のパラメーター リストを取り、Unit を返すプロシージャ (メソッド) の型のエイリアスとして Action を定義しています。