mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-03 18:10:56 +01:00
Remove all refrences to hassubtypeof and replace them with issubtypeof
This commit is contained in:
parent
3b300aa18a
commit
c4a19337fc
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
# type:hassubtypeof
|
||||
# type:issubtypeof
|
||||
|
||||
## Summary
|
||||
|
||||
|
@ -37,7 +37,7 @@ end
|
|||
Additionally it would be a pain for users to write a type function to be able to do subtype checks for any type. As the following example type function is already very long, despite not covering everything.
|
||||
|
||||
```luau
|
||||
type function hassubtypeof(a, b)
|
||||
type function issubtypeof(a, b)
|
||||
local false_type = types.singleton(false)
|
||||
local true_type = types.singleton(true)
|
||||
local is_subtype = false
|
||||
|
@ -55,7 +55,7 @@ type function hassubtypeof(a, b)
|
|||
local conmponents_that_are_subtype = 0
|
||||
|
||||
for _, component in components do
|
||||
if hassubtypeof(component):value() then
|
||||
if issubtypeof(component):value() then
|
||||
conmponents_that_are_subtype += 1
|
||||
end
|
||||
end
|
Loading…
Add table
Reference in a new issue