Scala REPL: Как найти тип функции?

В Scala REPL можно найти типы значений:

    scala> val x = 1
    x: Int = 1

    scala> :t x
    Int

Тем не менее, Scala REPL не показывает информацию о типе функций:

    scala> def inc(x:Int) = x + 1
    inc: (x: Int)Int,

scala> :t inc
<console>:9: error: missing arguments for method inc;
follow this method with `_' if you want to treat it as a partially applied function
       inc
       ^
<console>:9: error: missing arguments for method inc;
follow this method with `_' if you want to treat it as a partially applied function
          inc
          ^

Как найти тип функции в Scala REPL?

Ответы на вопрос(2)

Ваш ответ на вопрос