mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-19 19:34:00 +01:00
addressing comment: boolean is equivalent to true | false
This commit is contained in:
parent
cde3866893
commit
421be7551b
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ Note: methods under a different type heading (ex: `Singleton`) imply that the me
|
||||||
| ------------- | ------------- | ------------- |
|
| ------------- | ------------- | ------------- |
|
||||||
| `isstring()` | `boolean` | returns true if self is of type `string` |
|
| `isstring()` | `boolean` | returns true if self is of type `string` |
|
||||||
| `isnumber()` | `boolean` | returns true if self is of type `number` |
|
| `isnumber()` | `boolean` | returns true if self is of type `number` |
|
||||||
| `isboolean()` | `boolean` | returns true if self is of type `boolean` |
|
| `isboolean()` | `boolean` | returns true if self is of type `boolean` (e.g. true or false) |
|
||||||
| `istable()` | `boolean` | returns true if self is of type `table` |
|
| `istable()` | `boolean` | returns true if self is of type `table` |
|
||||||
| `isthread()` | `boolean` | returns true if self is of type `thread` |
|
| `isthread()` | `boolean` | returns true if self is of type `thread` |
|
||||||
| `isfunction()` | `boolean` | returns true if self is of type `function` |
|
| `isfunction()` | `boolean` | returns true if self is of type `function` |
|
||||||
|
|
Loading…
Add table
Reference in a new issue