outrun/outrun-core/lib/any.outrun

11 lines
203 B
Text
Raw Normal View History

use String
2022-08-04 17:38:00 +12:00
```doc
# Any
Defines a special protocol which applies to all Outrun types. Usually used in
place of a generic type argument.
```
2022-08-22 11:30:39 +12:00
protocol Any, as: do
def type_name(self: Self): String
end