mirror of
https://github.com/Ukendio/jecs.git
synced 2025-04-25 09:30:03 +00:00
Fix upvalues conflict in nested queries
This commit is contained in:
parent
6b465d1ed1
commit
3e639db371
1 changed files with 282 additions and 280 deletions
562
src/init.luau
562
src/init.luau
|
@ -714,44 +714,277 @@ export type Query = typeof({
|
||||||
|
|
||||||
type CompatibleArchetype = { archetype: Archetype, indices: { number } }
|
type CompatibleArchetype = { archetype: Archetype, indices: { number } }
|
||||||
|
|
||||||
local world_query: (World, ...i53) -> Query
|
local noop: Item = function()
|
||||||
do
|
return nil :: any
|
||||||
|
end
|
||||||
|
|
||||||
local noop: Item = function()
|
local Arm = function(self: Query, ...)
|
||||||
return nil :: any
|
return self
|
||||||
end
|
end
|
||||||
|
local EmptyQuery: Query = {
|
||||||
|
__iter = function(): Item
|
||||||
|
return noop
|
||||||
|
end,
|
||||||
|
drain = Arm,
|
||||||
|
next = noop :: Item,
|
||||||
|
replace = noop :: (Query, ...any) -> (),
|
||||||
|
with = Arm,
|
||||||
|
without = Arm,
|
||||||
|
}
|
||||||
|
|
||||||
local Arm = function(self: Query, ...)
|
setmetatable(EmptyQuery, EmptyQuery)
|
||||||
return self
|
|
||||||
end
|
|
||||||
local EmptyQuery: Query = {
|
|
||||||
__iter = function(): Item
|
|
||||||
return noop
|
|
||||||
end,
|
|
||||||
drain = Arm,
|
|
||||||
next = noop :: Item,
|
|
||||||
replace = noop :: (Query, ...any) -> (),
|
|
||||||
with = Arm,
|
|
||||||
without = Arm,
|
|
||||||
}
|
|
||||||
|
|
||||||
setmetatable(EmptyQuery, EmptyQuery)
|
local function world_query(world, ...)
|
||||||
|
-- breaking
|
||||||
|
if (...) == nil then
|
||||||
|
error("Missing components")
|
||||||
|
end
|
||||||
|
|
||||||
local lastArchetype: number
|
local compatible_archetypes = {}
|
||||||
local archetype: Archetype
|
local length = 0
|
||||||
local queryOutput: { any }
|
|
||||||
local entities: { number }
|
|
||||||
local i: number
|
|
||||||
|
|
||||||
local compatible_archetypes: { Archetype }
|
local components = { ... } :: any
|
||||||
local ids: { number }
|
local A, B, C, D, E, F, G, H, I = ...
|
||||||
local columns
|
|
||||||
|
|
||||||
local A, B, C, D, E, F, G, H, I
|
|
||||||
local a, b, c, d, e, f, g, h
|
local a, b, c, d, e, f, g, h
|
||||||
|
|
||||||
local init
|
local archetypes = world.archetypes
|
||||||
local drain
|
|
||||||
|
local firstArchetypeMap: ArchetypeMap
|
||||||
|
local componentIndex = world.componentIndex
|
||||||
|
|
||||||
|
for _, componentId in components do
|
||||||
|
local map = componentIndex[componentId]
|
||||||
|
if not map then
|
||||||
|
return EmptyQuery
|
||||||
|
end
|
||||||
|
|
||||||
|
if firstArchetypeMap == nil or map.size < firstArchetypeMap.size then
|
||||||
|
firstArchetypeMap = map
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
for id in firstArchetypeMap.cache do
|
||||||
|
local compatibleArchetype = archetypes[id]
|
||||||
|
local archetypeRecords = compatibleArchetype.records
|
||||||
|
|
||||||
|
local skip = false
|
||||||
|
|
||||||
|
for i, componentId in components do
|
||||||
|
local index = archetypeRecords[componentId]
|
||||||
|
if not index then
|
||||||
|
skip = true
|
||||||
|
break
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
if skip then
|
||||||
|
continue
|
||||||
|
end
|
||||||
|
|
||||||
|
length += 1
|
||||||
|
compatible_archetypes[length] = compatibleArchetype
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
local init = false
|
||||||
|
local drain = false
|
||||||
|
local ids = components
|
||||||
|
|
||||||
|
local world_query_iter_next
|
||||||
|
|
||||||
|
local lastArchetype = 1
|
||||||
|
local archetype
|
||||||
|
local columns
|
||||||
|
local entities
|
||||||
|
local i
|
||||||
|
local queryOutput
|
||||||
|
|
||||||
|
local function world_query_iter_create()
|
||||||
|
if not B then
|
||||||
|
function world_query_iter_next(): any
|
||||||
|
local entityId = entities[i]
|
||||||
|
while entityId == nil do
|
||||||
|
lastArchetype += 1
|
||||||
|
archetype = compatible_archetypes[lastArchetype]
|
||||||
|
if not archetype then
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
|
entities = archetype.entities
|
||||||
|
i = #entities
|
||||||
|
if i == 0 then
|
||||||
|
continue
|
||||||
|
end
|
||||||
|
entityId = entities[i]
|
||||||
|
columns = archetype.columns
|
||||||
|
local records = archetype.records
|
||||||
|
a = columns[records[A].column]
|
||||||
|
end
|
||||||
|
|
||||||
|
local row = i
|
||||||
|
i-=1
|
||||||
|
|
||||||
|
return entityId, a[row]
|
||||||
|
end
|
||||||
|
elseif not C then
|
||||||
|
function world_query_iter_next(): any
|
||||||
|
local entityId = entities[i]
|
||||||
|
while entityId == nil do
|
||||||
|
lastArchetype += 1
|
||||||
|
archetype = compatible_archetypes[lastArchetype]
|
||||||
|
if not archetype then
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
|
entities = archetype.entities
|
||||||
|
i = #entities
|
||||||
|
if i == 0 then
|
||||||
|
continue
|
||||||
|
end
|
||||||
|
entityId = entities[i]
|
||||||
|
columns = archetype.columns
|
||||||
|
local records = archetype.records
|
||||||
|
a = columns[records[A].column]
|
||||||
|
b = columns[records[B].column]
|
||||||
|
end
|
||||||
|
|
||||||
|
local row = i
|
||||||
|
i-=1
|
||||||
|
|
||||||
|
return entityId, a[row], b[row]
|
||||||
|
end
|
||||||
|
elseif not D then
|
||||||
|
function world_query_iter_next(): any
|
||||||
|
local entityId = entities[i]
|
||||||
|
while entityId == nil do
|
||||||
|
lastArchetype += 1
|
||||||
|
archetype = compatible_archetypes[lastArchetype]
|
||||||
|
if not archetype then
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
|
entities = archetype.entities
|
||||||
|
i = #entities
|
||||||
|
if i == 0 then
|
||||||
|
continue
|
||||||
|
end
|
||||||
|
entityId = entities[i]
|
||||||
|
columns = archetype.columns
|
||||||
|
local records = archetype.records
|
||||||
|
a = columns[records[A].column]
|
||||||
|
b = columns[records[B].column]
|
||||||
|
c = columns[records[C].column]
|
||||||
|
end
|
||||||
|
|
||||||
|
local row = i
|
||||||
|
i-=1
|
||||||
|
|
||||||
|
return entityId, a[row], b[row], c[row]
|
||||||
|
end
|
||||||
|
elseif not E then
|
||||||
|
function world_query_iter_next(): any
|
||||||
|
local entityId = entities[i]
|
||||||
|
while entityId == nil do
|
||||||
|
lastArchetype += 1
|
||||||
|
archetype = compatible_archetypes[lastArchetype]
|
||||||
|
if not archetype then
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
|
entities = archetype.entities
|
||||||
|
i = #entities
|
||||||
|
if i == 0 then
|
||||||
|
continue
|
||||||
|
end
|
||||||
|
entityId = entities[i]
|
||||||
|
columns = archetype.columns
|
||||||
|
local records = archetype.records
|
||||||
|
a = columns[records[A].column]
|
||||||
|
b = columns[records[B].column]
|
||||||
|
c = columns[records[C].column]
|
||||||
|
d = columns[records[D].column]
|
||||||
|
end
|
||||||
|
|
||||||
|
local row = i
|
||||||
|
i-=1
|
||||||
|
|
||||||
|
return entityId, a[row], b[row], c[row], d[row]
|
||||||
|
end
|
||||||
|
else
|
||||||
|
function world_query_iter_next(): any
|
||||||
|
local entityId = entities[i]
|
||||||
|
while entityId == nil do
|
||||||
|
lastArchetype += 1
|
||||||
|
archetype = compatible_archetypes[lastArchetype]
|
||||||
|
if not archetype then
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
|
entities = archetype.entities
|
||||||
|
i = #entities
|
||||||
|
if i == 0 then
|
||||||
|
continue
|
||||||
|
end
|
||||||
|
entityId = entities[i]
|
||||||
|
columns = archetype.columns
|
||||||
|
local records = archetype.records
|
||||||
|
|
||||||
|
if not F then
|
||||||
|
a = columns[records[A].column]
|
||||||
|
b = columns[records[B].column]
|
||||||
|
c = columns[records[C].column]
|
||||||
|
d = columns[records[D].column]
|
||||||
|
e = columns[records[E].column]
|
||||||
|
elseif not G then
|
||||||
|
a = columns[records[A].column]
|
||||||
|
b = columns[records[B].column]
|
||||||
|
c = columns[records[C].column]
|
||||||
|
d = columns[records[D].column]
|
||||||
|
e = columns[records[E].column]
|
||||||
|
f = columns[records[F].column]
|
||||||
|
elseif not H then
|
||||||
|
a = columns[records[A].column]
|
||||||
|
b = columns[records[B].column]
|
||||||
|
c = columns[records[C].column]
|
||||||
|
d = columns[records[D].column]
|
||||||
|
e = columns[records[E].column]
|
||||||
|
f = columns[records[F].column]
|
||||||
|
g = columns[records[G].column]
|
||||||
|
elseif not I then
|
||||||
|
a = columns[records[A].column]
|
||||||
|
b = columns[records[B].column]
|
||||||
|
c = columns[records[C].column]
|
||||||
|
d = columns[records[D].column]
|
||||||
|
e = columns[records[E].column]
|
||||||
|
f = columns[records[F].column]
|
||||||
|
g = columns[records[G].column]
|
||||||
|
h = columns[records[H].column]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
local row = i
|
||||||
|
i-=1
|
||||||
|
|
||||||
|
if not F then
|
||||||
|
return entityId, a[row], b[row], c[row], d[row], e[row]
|
||||||
|
elseif not G then
|
||||||
|
return entityId, a[row], b[row], c[row], d[row], e[row], f[row]
|
||||||
|
elseif not H then
|
||||||
|
return entityId, a[row], b[row], c[row], d[row], e[row], f[row], g[row]
|
||||||
|
elseif not I then
|
||||||
|
return entityId, a[row], b[row], c[row], d[row], e[row], f[row], g[row], h[row]
|
||||||
|
end
|
||||||
|
|
||||||
|
local field = archetype.records
|
||||||
|
for j, id in ids do
|
||||||
|
queryOutput[j] = columns[field[id].column][row]
|
||||||
|
end
|
||||||
|
|
||||||
|
return entityId, unpack(queryOutput)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
local function query_init(query)
|
local function query_init(query)
|
||||||
if init and drain then
|
if init and drain then
|
||||||
|
@ -763,7 +996,7 @@ do
|
||||||
archetype = compatible_archetypes[lastArchetype]
|
archetype = compatible_archetypes[lastArchetype]
|
||||||
|
|
||||||
if not archetype then
|
if not archetype then
|
||||||
return
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
queryOutput = {}
|
queryOutput = {}
|
||||||
|
@ -808,205 +1041,19 @@ do
|
||||||
e = columns[records[E].column]
|
e = columns[records[E].column]
|
||||||
f = columns[records[F].column]
|
f = columns[records[F].column]
|
||||||
g = columns[records[G].column]
|
g = columns[records[G].column]
|
||||||
elseif H then
|
elseif not I then
|
||||||
a = columns[records[A].column]
|
a = columns[records[A].column]
|
||||||
b = columns[records[B].column]
|
b = columns[records[B].column]
|
||||||
c = columns[records[D].column]
|
c = columns[records[C].column]
|
||||||
|
d = columns[records[D].column]
|
||||||
e = columns[records[E].column]
|
e = columns[records[E].column]
|
||||||
f = columns[records[F].column]
|
f = columns[records[F].column]
|
||||||
g = columns[records[G].column]
|
g = columns[records[G].column]
|
||||||
h = columns[records[H].column]
|
h = columns[records[H].column]
|
||||||
end
|
end
|
||||||
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
local world_query_iter_next
|
|
||||||
|
|
||||||
local function world_query_iter_create()
|
|
||||||
if not B then
|
|
||||||
function world_query_iter_next(): any
|
|
||||||
local entityId = entities[i]
|
|
||||||
while entityId == nil do
|
|
||||||
lastArchetype += 1
|
|
||||||
archetype = compatible_archetypes[lastArchetype]
|
|
||||||
if not archetype then
|
|
||||||
return nil
|
|
||||||
end
|
|
||||||
|
|
||||||
entities = archetype.entities
|
|
||||||
i = #entities
|
|
||||||
if i == 0 then
|
|
||||||
continue
|
|
||||||
end
|
|
||||||
entityId = entities[i]
|
|
||||||
columns = archetype.columns
|
|
||||||
local records = archetype.records
|
|
||||||
a = columns[records[A].column]
|
|
||||||
end
|
|
||||||
|
|
||||||
local row = i
|
|
||||||
i-=1
|
|
||||||
|
|
||||||
return entityId, a[row]
|
|
||||||
end
|
|
||||||
elseif not C then
|
|
||||||
function world_query_iter_next(): any
|
|
||||||
local entityId = entities[i]
|
|
||||||
while entityId == nil do
|
|
||||||
lastArchetype += 1
|
|
||||||
archetype = compatible_archetypes[lastArchetype]
|
|
||||||
if not archetype then
|
|
||||||
return nil
|
|
||||||
end
|
|
||||||
|
|
||||||
entities = archetype.entities
|
|
||||||
i = #entities
|
|
||||||
if i == 0 then
|
|
||||||
continue
|
|
||||||
end
|
|
||||||
entityId = entities[i]
|
|
||||||
columns = archetype.columns
|
|
||||||
local records = archetype.records
|
|
||||||
a = columns[records[A].column]
|
|
||||||
b = columns[records[B].column]
|
|
||||||
end
|
|
||||||
|
|
||||||
local row = i
|
|
||||||
i-=1
|
|
||||||
|
|
||||||
return entityId, a[row], b[row]
|
|
||||||
end
|
|
||||||
elseif not D then
|
|
||||||
function world_query_iter_next(): any
|
|
||||||
local entityId = entities[i]
|
|
||||||
while entityId == nil do
|
|
||||||
lastArchetype += 1
|
|
||||||
archetype = compatible_archetypes[lastArchetype]
|
|
||||||
if not archetype then
|
|
||||||
return nil
|
|
||||||
end
|
|
||||||
|
|
||||||
entities = archetype.entities
|
|
||||||
i = #entities
|
|
||||||
if i == 0 then
|
|
||||||
continue
|
|
||||||
end
|
|
||||||
entityId = entities[i]
|
|
||||||
columns = archetype.columns
|
|
||||||
local records = archetype.records
|
|
||||||
a = columns[records[A].column]
|
|
||||||
b = columns[records[B].column]
|
|
||||||
c = columns[records[C].column]
|
|
||||||
end
|
|
||||||
|
|
||||||
local row = i
|
|
||||||
i-=1
|
|
||||||
|
|
||||||
return entityId, a[row], b[row], c[row]
|
|
||||||
end
|
|
||||||
elseif not E then
|
|
||||||
function world_query_iter_next(): any
|
|
||||||
local entityId = entities[i]
|
|
||||||
while entityId == nil do
|
|
||||||
lastArchetype += 1
|
|
||||||
archetype = compatible_archetypes[lastArchetype]
|
|
||||||
if not archetype then
|
|
||||||
return nil
|
|
||||||
end
|
|
||||||
|
|
||||||
entities = archetype.entities
|
|
||||||
i = #entities
|
|
||||||
if i == 0 then
|
|
||||||
continue
|
|
||||||
end
|
|
||||||
entityId = entities[i]
|
|
||||||
columns = archetype.columns
|
|
||||||
local records = archetype.records
|
|
||||||
a = columns[records[A].column]
|
|
||||||
b = columns[records[B].column]
|
|
||||||
c = columns[records[C].column]
|
|
||||||
d = columns[records[D].column]
|
|
||||||
end
|
|
||||||
|
|
||||||
local row = i
|
|
||||||
i-=1
|
|
||||||
|
|
||||||
return entityId, a[row], b[row], c[row], d[row]
|
|
||||||
end
|
|
||||||
else
|
|
||||||
function world_query_iter_next(): any
|
|
||||||
local entityId = entities[i]
|
|
||||||
while entityId == nil do
|
|
||||||
lastArchetype += 1
|
|
||||||
archetype = compatible_archetypes[lastArchetype]
|
|
||||||
if not archetype then
|
|
||||||
return nil
|
|
||||||
end
|
|
||||||
|
|
||||||
entities = archetype.entities
|
|
||||||
i = #entities
|
|
||||||
if i == 0 then
|
|
||||||
continue
|
|
||||||
end
|
|
||||||
entityId = entities[i]
|
|
||||||
columns = archetype.columns
|
|
||||||
local records = archetype.records
|
|
||||||
|
|
||||||
if not F then
|
|
||||||
a = columns[records[A].column]
|
|
||||||
b = columns[records[B].column]
|
|
||||||
c = columns[records[C].column]
|
|
||||||
d = columns[records[D].column]
|
|
||||||
e = columns[records[E].column]
|
|
||||||
elseif not G then
|
|
||||||
a = columns[records[A].column]
|
|
||||||
b = columns[records[B].column]
|
|
||||||
c = columns[records[C].column]
|
|
||||||
d = columns[records[D].column]
|
|
||||||
e = columns[records[E].column]
|
|
||||||
f = columns[records[F].column]
|
|
||||||
elseif not H then
|
|
||||||
a = columns[records[A].column]
|
|
||||||
b = columns[records[B].column]
|
|
||||||
c = columns[records[C].column]
|
|
||||||
d = columns[records[D].column]
|
|
||||||
e = columns[records[E].column]
|
|
||||||
f = columns[records[F].column]
|
|
||||||
g = columns[records[G].column]
|
|
||||||
elseif not I then
|
|
||||||
a = columns[records[A].column]
|
|
||||||
b = columns[records[B].column]
|
|
||||||
c = columns[records[C].column]
|
|
||||||
d = columns[records[D].column]
|
|
||||||
e = columns[records[E].column]
|
|
||||||
f = columns[records[F].column]
|
|
||||||
g = columns[records[G].column]
|
|
||||||
h = columns[records[H].column]
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
local row = i
|
|
||||||
i-=1
|
|
||||||
|
|
||||||
if not F then
|
|
||||||
return entityId, a[row], b[row], c[row], d[row], e[row]
|
|
||||||
elseif not G then
|
|
||||||
return entityId, a[row], b[row], c[row], d[row], e[row], f[row]
|
|
||||||
elseif not H then
|
|
||||||
return entityId, a[row], b[row], c[row], d[row], e[row], f[row], g[row]
|
|
||||||
elseif not I then
|
|
||||||
return entityId, a[row], b[row], c[row], d[row], e[row], f[row], g[row], h[row]
|
|
||||||
end
|
|
||||||
|
|
||||||
local field = archetype.records
|
|
||||||
for j, id in ids do
|
|
||||||
queryOutput[j] = columns[field[id].column][row]
|
|
||||||
end
|
|
||||||
|
|
||||||
return entityId, unpack(queryOutput)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
local function world_query_without(self, ...)
|
local function world_query_without(self, ...)
|
||||||
local withoutComponents = { ... }
|
local withoutComponents = { ... }
|
||||||
for i = #compatible_archetypes, 1, -1 do
|
for i = #compatible_archetypes, 1, -1 do
|
||||||
|
@ -1119,8 +1166,10 @@ do
|
||||||
|
|
||||||
local function world_query_drain(query)
|
local function world_query_drain(query)
|
||||||
drain = true
|
drain = true
|
||||||
query_init(query)
|
if query_init(query) then
|
||||||
return query
|
return query
|
||||||
|
end
|
||||||
|
return EmptyQuery
|
||||||
end
|
end
|
||||||
|
|
||||||
local function world_query_iter(query)
|
local function world_query_iter(query)
|
||||||
|
@ -1135,6 +1184,10 @@ do
|
||||||
return world_query_iter_next()
|
return world_query_iter_next()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if #compatible_archetypes == 0 then
|
||||||
|
return EmptyQuery
|
||||||
|
end
|
||||||
|
|
||||||
local it = {
|
local it = {
|
||||||
__iter = world_query_iter,
|
__iter = world_query_iter,
|
||||||
drain = world_query_drain,
|
drain = world_query_drain,
|
||||||
|
@ -1147,64 +1200,13 @@ do
|
||||||
|
|
||||||
setmetatable(it, it)
|
setmetatable(it, it)
|
||||||
|
|
||||||
function world_query(world: World, ...: any): Query
|
drain = false
|
||||||
-- breaking
|
init = false
|
||||||
if (...) == nil then
|
ids = components
|
||||||
error("Missing components")
|
|
||||||
end
|
|
||||||
|
|
||||||
compatible_archetypes = {}
|
world_query_iter_create()
|
||||||
local length = 0
|
|
||||||
|
|
||||||
local components = { ... } :: any
|
return it
|
||||||
A, B, C, D, E, F, G, H, I = ...
|
|
||||||
|
|
||||||
local archetypes = world.archetypes
|
|
||||||
|
|
||||||
local firstArchetypeMap: ArchetypeMap
|
|
||||||
local componentIndex = world.componentIndex
|
|
||||||
|
|
||||||
for _, componentId in components do
|
|
||||||
local map = componentIndex[componentId]
|
|
||||||
if not map then
|
|
||||||
return EmptyQuery
|
|
||||||
end
|
|
||||||
|
|
||||||
if firstArchetypeMap == nil or map.size < firstArchetypeMap.size then
|
|
||||||
firstArchetypeMap = map
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
for id in firstArchetypeMap.cache do
|
|
||||||
local compatibleArchetype = archetypes[id]
|
|
||||||
local archetypeRecords = compatibleArchetype.records
|
|
||||||
|
|
||||||
local skip = false
|
|
||||||
|
|
||||||
for i, componentId in components do
|
|
||||||
local index = archetypeRecords[componentId]
|
|
||||||
if not index then
|
|
||||||
skip = true
|
|
||||||
break
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
if skip then
|
|
||||||
continue
|
|
||||||
end
|
|
||||||
|
|
||||||
length += 1
|
|
||||||
compatible_archetypes[length] = compatibleArchetype
|
|
||||||
end
|
|
||||||
|
|
||||||
drain = false
|
|
||||||
init = false
|
|
||||||
ids = components
|
|
||||||
|
|
||||||
world_query_iter_create()
|
|
||||||
|
|
||||||
return it
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
type WorldIterator = (() -> (i53, { [unknown]: unknown? })) & (() -> ()) & (() -> i53)
|
type WorldIterator = (() -> (i53, { [unknown]: unknown? })) & (() -> ()) & (() -> i53)
|
||||||
|
|
Loading…
Reference in a new issue