outrun/outrun-core/lib/abs.run

10 lines
160 B
Text
Raw Normal View History

2022-08-09 12:39:52 +12:00
```doc
# Absolute value
```
protocol AbsoluteValue, as: do
```doc
Return the absolute value (or magnitude) of `self`.
```
def abs(self: Self): Self
end