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.
これを書くことはどういう意味ですか:
abstract class Parser[+T] extends (Input => ParseResult[T]) { ... }
それは何から伸びていますか?
Input => ParseResult[T]これは、 のシンタックス シュガーであるから拡張されFunction1[Input, ParseResult[T]]ます。
Input => ParseResult[T]
Function1[Input, ParseResult[T]]