2018-01-11 18:51:21 -08:00
|
|
|
#..
|
|
|
|
This file contains code that supports manipulating and using collections like lists
|
|
|
|
and dictionaries.
|
|
|
|
|
2018-02-02 15:48:28 -08:00
|
|
|
use "core/metaprogramming.nom"
|
|
|
|
use "core/control_flow.nom"
|
|
|
|
use "core/operators.nom"
|
2017-09-21 00:10:26 -07:00
|
|
|
|
|
|
|
# List/dict functions:
|
|
|
|
|
|
|
|
# Indexing
|
2018-04-25 16:30:49 -07:00
|
|
|
immediately
|
2018-01-26 20:20:12 -08:00
|
|
|
compile [..]
|
|
|
|
%index st to last in %list, %index nd to last in %list, %index rd to last in %list
|
|
|
|
%index th to last in %list
|
2018-04-19 17:23:44 -07:00
|
|
|
..to: Lua value "utils.nth_to_last(\(%list as lua expr), \(%index as lua expr))"
|
2017-09-21 00:10:26 -07:00
|
|
|
|
2018-04-25 16:30:49 -07:00
|
|
|
immediately
|
2018-01-26 20:20:12 -08:00
|
|
|
parse [first in %list, first %list] as: 1 st in %list
|
|
|
|
parse [last in %list, last %list] as: 1 st to last in %list
|
2017-09-21 00:10:26 -07:00
|
|
|
|
|
|
|
# Membership testing
|
2018-04-25 16:30:49 -07:00
|
|
|
immediately
|
2018-01-26 20:20:12 -08:00
|
|
|
action [%item is in %list, %list contains %item, %list has %item]
|
|
|
|
for %key = %value in %list
|
|
|
|
if (%key is %item): return (yes)
|
|
|
|
return (no)
|
|
|
|
|
|
|
|
action [..]
|
|
|
|
%item isn't in %list, %item is not in %list
|
|
|
|
%list doesn't contain %item, %list does not contain %item
|
|
|
|
%list doesn't have %item, %list does not have %item
|
2018-04-25 16:30:49 -07:00
|
|
|
..
|
2018-01-26 20:20:12 -08:00
|
|
|
for %key = %value in %list
|
|
|
|
if (%key is %item): return (no)
|
|
|
|
return (yes)
|
2017-10-11 20:32:31 -07:00
|
|
|
|
2018-04-25 16:30:49 -07:00
|
|
|
immediately
|
2018-01-26 20:20:12 -08:00
|
|
|
# Note: it's important to have the space after "[" to prevent confusion if %index is a string
|
2018-04-19 17:23:44 -07:00
|
|
|
compile [%list has key %index, %list has index %index] to
|
|
|
|
Lua value ".."
|
2018-01-26 20:20:12 -08:00
|
|
|
((\(%list as lua expr))[ \(%index as lua expr)] ~= nil)
|
2017-10-11 20:32:31 -07:00
|
|
|
|
2018-01-26 20:20:12 -08:00
|
|
|
# Note: it's important to have the space after "[" to prevent confusion if %index is a string
|
|
|
|
compile [..]
|
|
|
|
%list doesn't have key %index, %list does not have key %index
|
|
|
|
%list doesn't have index %index, %list does not have index %index
|
2018-04-19 17:23:44 -07:00
|
|
|
..to: Lua value "((\(%list as lua expr))[ \(%index as lua expr)] == nil)"
|
2017-10-11 20:32:31 -07:00
|
|
|
|
2018-04-25 16:30:49 -07:00
|
|
|
compile [number of keys in %list] to
|
2018-04-19 17:23:44 -07:00
|
|
|
Lua value "utils.size(\(%list as lua expr))"
|
2017-09-21 00:10:26 -07:00
|
|
|
|
2018-04-25 16:30:49 -07:00
|
|
|
compile [append %item to %list, add %item to %list, to %list add %item, to %list append %item] to
|
2018-04-19 17:23:44 -07:00
|
|
|
Lua "table.insert(\(%list as lua expr), \(%item as lua expr))"
|
2017-09-28 17:49:15 -07:00
|
|
|
|
2018-04-25 16:30:49 -07:00
|
|
|
compile [pop from %list, remove last from %list] to
|
2018-04-19 17:23:44 -07:00
|
|
|
Lua "table.remove(\(%list as lua expr))"
|
2017-09-28 17:49:15 -07:00
|
|
|
|
2018-04-25 16:30:49 -07:00
|
|
|
compile [remove index %index from %list] to
|
2018-04-19 17:23:44 -07:00
|
|
|
Lua "table.remove(\(%list as lua expr), \(%index as lua expr))"
|
2017-09-21 21:11:13 -07:00
|
|
|
|
2017-09-21 00:10:26 -07:00
|
|
|
# List Comprehension
|
2018-04-25 16:30:49 -07:00
|
|
|
immediately
|
|
|
|
compile [%expression for %item in %iterable] to
|
2018-04-08 16:01:18 -07:00
|
|
|
assume (%item.type is "Var") or barf ".."
|
|
|
|
List comprehension has the wrong type for the loop variable. Expected Var, but got: \(%item.type)
|
2018-04-19 17:23:44 -07:00
|
|
|
return
|
|
|
|
Lua value ".."
|
2018-01-25 17:34:49 -08:00
|
|
|
(function()
|
|
|
|
local comprehension = {};
|
|
|
|
for i,\(%item as lua expr) in ipairs(\(%iterable as lua expr)) do
|
|
|
|
comprehension[i] = \(%expression as lua expr);
|
|
|
|
end
|
|
|
|
return comprehension;
|
|
|
|
end)()
|
2018-01-11 04:38:46 -08:00
|
|
|
parse [%expression for all %iterable] as: %expression for % in %iterable
|
|
|
|
|
2018-01-29 15:14:39 -08:00
|
|
|
compile [..]
|
|
|
|
%expression for %index from %start to %stop via %step
|
|
|
|
%expression for %index from %start to %stop by %step
|
2018-04-25 16:30:49 -07:00
|
|
|
..to
|
2018-04-08 16:01:18 -07:00
|
|
|
assume (%index.type is "Var") or barf ".."
|
|
|
|
List comprehension has the wrong type for the loop variable. Expected Var, but got: \(%index.type)
|
2018-04-19 17:23:44 -07:00
|
|
|
return
|
|
|
|
Lua value ".."
|
2018-01-29 15:14:39 -08:00
|
|
|
(function()
|
|
|
|
local comprehension = {};
|
|
|
|
for \(%index as lua expr)=\(%start as lua expr),\(%stop as lua expr),\(%step as lua expr) do
|
2018-02-05 15:10:22 -08:00
|
|
|
comprehension[#comprehension+1] = \(%expression as lua expr);
|
2018-01-29 15:14:39 -08:00
|
|
|
end
|
|
|
|
return comprehension;
|
|
|
|
end)()
|
|
|
|
parse [%expression for all ] as: %expression for % in %iterable
|
|
|
|
parse [%expression for %var from %start to %stop] as: %expression for %var from %start to %stop via 1
|
|
|
|
parse [..]
|
|
|
|
%expression for all %start to %stop by %step
|
|
|
|
%expression for all %start to %stop via %step
|
|
|
|
..as: %expression for % from %start to %stop via %step
|
|
|
|
parse [%expression for all %start to %stop] as: %expression for all %start to %stop via 1
|
|
|
|
|
2018-04-25 16:30:49 -07:00
|
|
|
compile [%expression for %key = %value in %iterable] to
|
2018-04-08 16:01:18 -07:00
|
|
|
assume (%key.type is "Var") or barf ".."
|
|
|
|
List comprehension has the wrong type for the key loop variable. Expected Var, but got: \(%key.type)
|
|
|
|
assume (%value.type is "Var") or barf ".."
|
|
|
|
List comprehension has the wrong type for the value loop variable. Expected Var, but got: \(%value.type)
|
2018-04-19 17:23:44 -07:00
|
|
|
return
|
|
|
|
Lua value ".."
|
2018-01-25 17:34:49 -08:00
|
|
|
(function()
|
|
|
|
local comprehension = {};
|
|
|
|
for \(%key as lua expr), \(%value as lua expr) in pairs(\(%iterable as lua expr)) do
|
2018-01-26 20:20:12 -08:00
|
|
|
table.insert(comprehension, \(%expression as lua expr));
|
2018-01-25 17:34:49 -08:00
|
|
|
end
|
|
|
|
return comprehension;
|
|
|
|
end)()
|
2018-01-11 04:38:46 -08:00
|
|
|
|
|
|
|
# Dict comprehensions
|
2018-04-25 16:30:49 -07:00
|
|
|
immediately
|
|
|
|
compile [%key = %value for %item in %iterable] to
|
2018-04-08 16:01:18 -07:00
|
|
|
assume (%item.type is "Var") or barf ".."
|
|
|
|
Dict comprehension has the wrong type for the loop variable. Expected Var, but got: \(%item.type)
|
2018-01-25 17:34:49 -08:00
|
|
|
# Note: it's important to have the space after "[" to prevent confusion if %key is a string
|
2018-04-19 17:23:44 -07:00
|
|
|
return
|
|
|
|
Lua value ".."
|
2018-01-25 17:34:49 -08:00
|
|
|
(function()
|
|
|
|
local comprehension = {};
|
|
|
|
for i,\(%item as lua expr) in ipairs(\(%iterable as lua expr)) do
|
|
|
|
comprehension[ \(%key as lua expr)] = \(%value as lua expr)
|
|
|
|
end
|
|
|
|
return comprehension;
|
|
|
|
end)()
|
2018-01-11 04:38:46 -08:00
|
|
|
parse [%key = %value for all %iterable] as: %key = %value for % in %iterable
|
|
|
|
|
2018-04-25 16:30:49 -07:00
|
|
|
compile [%key = %value for %src_key = %src_value in %iterable] to
|
2018-04-08 16:01:18 -07:00
|
|
|
assume (%src_key.type is "Var") or barf ".."
|
|
|
|
Dict comprehension has the wrong type for the key loop variable. Expected Var, but got: \(%src_key.type)
|
|
|
|
assume (%src_value.type is "Var") or barf ".."
|
|
|
|
Dict comprehension has the wrong type for the value loop variable. Expected Var, but got: \(%src_value.type)
|
2018-01-25 17:34:49 -08:00
|
|
|
# Note: it's important to have the space after "[" to prevent confusion if %key is a string
|
2018-04-19 17:23:44 -07:00
|
|
|
return
|
|
|
|
Lua value ".."
|
2018-01-25 17:34:49 -08:00
|
|
|
(function()
|
|
|
|
local comprehension = {};
|
|
|
|
for \(%src_key as lua expr), \(%src_value as lua expr) in pairs(\(%iterable as lua expr)) do
|
|
|
|
comprehension[ \(%key as lua expr)] = \(%value as lua expr);
|
|
|
|
end
|
|
|
|
return comprehension;
|
|
|
|
end)()
|
2018-01-03 00:52:01 -08:00
|
|
|
|
2018-04-25 16:30:49 -07:00
|
|
|
immediately
|
|
|
|
action [%lists flattened]
|
2018-01-26 20:20:12 -08:00
|
|
|
%flat <- []
|
2018-04-25 16:30:49 -07:00
|
|
|
for %list in %lists
|
|
|
|
for %item in %list
|
2018-01-26 20:20:12 -08:00
|
|
|
add %item to %flat
|
|
|
|
return %flat
|
|
|
|
|
|
|
|
parse [entries in %dict] as: {key:%k, value:%v} for %k = %v in %dict
|
|
|
|
parse [keys in %dict] as: %k for %k = %v in %dict
|
|
|
|
parse [values in %dict] as: %v for %k = %v in %dict
|
|
|
|
|
2018-04-25 16:30:49 -07:00
|
|
|
# Sorting
|
|
|
|
immediately
|
2018-04-19 17:23:44 -07:00
|
|
|
compile [sort %items] to: Lua "table.sort(\(%items as lua expr));"
|
|
|
|
compile [sort %items by %key_expr] to
|
|
|
|
Lua ".."
|
|
|
|
utils.sort(\(%items as lua expr), function(_)
|
2018-01-26 20:20:12 -08:00
|
|
|
return \(%key_expr as lua expr);
|
2018-04-19 17:23:44 -07:00
|
|
|
end);
|
2018-01-26 20:20:12 -08:00
|
|
|
|
2018-04-25 16:30:49 -07:00
|
|
|
immediately
|
|
|
|
action [%items sorted, sorted %items]
|
2018-01-26 20:20:12 -08:00
|
|
|
%copy <- (% for all %items)
|
|
|
|
sort %copy
|
|
|
|
return %copy
|
2018-04-25 16:30:49 -07:00
|
|
|
action [%items sorted by %key]
|
2018-01-26 20:20:12 -08:00
|
|
|
%copy <- (% for all %items)
|
|
|
|
sort %copy by %key
|
|
|
|
return %copy
|
|
|
|
|
2018-04-25 16:30:49 -07:00
|
|
|
action [unique %items]
|
2018-01-26 20:20:12 -08:00
|
|
|
%unique <- []
|
|
|
|
%seen <- {}
|
2018-04-25 16:30:49 -07:00
|
|
|
for all %items
|
2018-01-26 20:20:12 -08:00
|
|
|
unless: % in %seen
|
|
|
|
add % to %unique
|
|
|
|
(% in %seen) <- (yes)
|
|
|
|
return %unique
|
|
|
|
|
2018-04-25 16:30:49 -07:00
|
|
|
immediately
|
2018-01-26 20:20:12 -08:00
|
|
|
# Metatable stuff
|
2018-04-19 17:23:44 -07:00
|
|
|
compile [set %dict's metatable to %metatable] to
|
|
|
|
Lua "setmetatable(\(%dict as lua expr), \(%metatable as lua expr));"
|
2018-01-26 20:20:12 -08:00
|
|
|
|
2018-04-19 17:23:44 -07:00
|
|
|
compile [new counter] to: Lua value "setmetatable({}, {__index=function() return 0; end})"
|
2018-01-26 20:20:12 -08:00
|
|
|
|
2018-04-19 17:23:44 -07:00
|
|
|
compile [new default dict] to
|
|
|
|
Lua value ".."
|
2018-01-26 20:20:12 -08:00
|
|
|
setmetatable({}, {__index=function(self, key)
|
|
|
|
t = {};
|
|
|
|
self[key] = t;
|
|
|
|
return t;
|
|
|
|
end})
|
2017-10-12 14:39:03 -07:00
|
|
|
|
2017-09-21 00:10:26 -07:00
|
|
|
# TODO: maybe make a generator/coroutine?
|