Inline Structural type definitions - i.e. a type described by what methods it supports. For example: Notice that the type of the parameter object Closer {
def using(closeable: { def close(): Unit }, f: => Unit) {
try {
f
} finally { closeable.close }
}
}
closeable is not defined other than it has a close method
|
2 | added 4 characters in body | ||
|
|
||||
|
1 | [made Community Wiki] | ||
|
Inline type definitions - i.e. a type described by what methods it supports. For example:
Notice that the type of the parameter |
||||
