outrun/lib/boolean.run

19 lines
380 B
Text
Raw Normal View History

2022-08-04 17:38:00 +12:00
```doc
# Boolean
Provides a common interface for values masquerading as Booleans.
```
protocol Boolean, as: do
2022-08-04 17:38:00 +12:00
```doc
A mechanism for values to convert themselves into a concrete boolean value.
Must be implemented.
```
def true?(self: Self): Outrun.Core.Boolean
```doc
Is the value false?
```
def false?(self: Self): Outrun.Core.Boolean, as: !true?(self)
2022-08-04 17:38:00 +12:00
end