lua で と で 2 つの条件を確認する場合、実行時間はどちらが速いですか?
if bool and somefuntion() then
do stuff
end
また
if bool then
if somefuntion() then
do stuff
end
end
?
lua で と で 2 つの条件を確認する場合、実行時間はどちらが速いですか?
if bool and somefuntion() then
do stuff
end
また
if bool then
if somefuntion() then
do stuff
end
end
?