-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtablePlus.lua
201 lines (162 loc) · 6.19 KB
/
tablePlus.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
local module = {}
function valeursDeCle(tab, objet, mult)
if mult == nil then mult = true end
if type(tab) ~= "table" then error("argument #1 table attendue, " .. type(tab) .. " fournit ", 2) end
if objet == nil then error("argument #2 variable attendue, nil fournit", 2) end
if type(mult) ~= "boolean" then error("argument #3 boolean attendue, " .. type(mult) .. " fournit ", 2) end
--> Variable de boucle : la liste des valeurs
local valeurs = nil
if mult then valeurs = {} end
--> Pour chaque clé et valeur dans <tab> ..
for cle, val in pairs(tab) do
--> .. si la clé coïncide avec <objet> .. ..
if cle == objet then
if not mult then valeurs = val; break
else table.insert(valeurs, val) end
end
end
--> Retour
return valeurs
end
module["vok"] = valeursDeCle
module["valeursDeCle"] = valeursDeCle
module["valuesOfKey"] = valeursDeCle
function clesDeValeur(tab, objet, mult)
if mult == nil then mult = true end
if type(tab) ~= "table" then error("argument #1 table attendue, " .. type(tab) .. " fournit ", 2) end
if objet == nil then error("argument #2 variable attendue, nil fournit", 2) end
if type(mult) ~= "boolean" then error("argument #3 boolean attendue, " .. type(mult) .. " fournit ", 2) end
--> Variable de boucle : la liste des clés
local cles = nil
if mult then cles = {} end
--> Pour chaque clé et valeur dans <tab> ..
for cle, val in pairs(tab) do
--> .. si la valeur coïncide avec <objet> .. ..
if val == objet then
if not mult then cles = cle; break
else table.insert(cles, cle) end
end
end
--> Retour
return cles
end
module["kov"] = clesDeValeur
module["clesDeValeur"] = clesDeValeur
module["keysOfValue"] = clesDeValeur
--{ Indique si <tab> contient <objet> en tant que clé
function contientCle(tab, objet)
if type(tab) ~= "table" then error("argument #1 table attendue, " .. type(tab) .. " fournit ", 2) end
if objet == nil then error("argument #2 variable attendue, nil fournit", 2) end
local retour = false
for cle, val in pairs(tab) do
if cle == objet then retour = true; break end
end
--> Retour
return retour
end
module["hk"] = contient
module["contientCle"] = contient
module["containKey"] = contient
module["hasKey"] = contient
--{ Indique si <tab> contient <objet> en tant que valeur
function contientVal(tab, objet)
if type(tab) ~= "table" then error("argument #1 table attendue, " .. type(tab) .. " fournit ", 2) end
if objet == nil then error("argument #2 variable attendue, nil fournit", 2) end
local retour = false
for cle, val in pairs(tab) do
if val == objet then retour = true; break end
end
--> Retour
return retour
end
module["hv"] = contient
module["contientVal"] = contient
module["containVal"] = contient
module["hasVal"] = contient
--{ Copie une table
function copier(tab, prof)
if type(tab) ~= "table" then error("argument #1 table attendue, " .. type(tab) .. " fournit ", 2) end
if type(prof) ~= "boolean" then error("argument #2 boolean attendu, " .. type(prof) .. " fournit ", 2) end
prof = prof or false
local copie = {}
--[] Cas d'une table sans copie profonde : si une des valeurs est une table elle ne sera pas copiée mais directement utilisée
if not prof then
for cle, val in pairs(tab) do
copie[cle] = val
end
--[] Cas d'une table avec copie profonde : si une des valeurs est une table elle sera elle-même copiée par copie profonde
else
for cle, val in pairs(tab) do
--> Si on tombe sur une sous-table ..
if type(val) == 'table' then
--> .. on la copie profondément
copie[cle] = copier(val, true)
--> Si on tombe sur un autre type de variable..
else
--> .. on la copie classiquement
copie[cle] = val
end
end
end
--> Retour
return copie
end
module["copier"] = copier
module["copy"] = copier
module["cp"] = copier
--{ Donne la longeur d'une table, remplace #<table> lorsque les clés ne sont pas des entiers
function longeur(tab)
if type(tab) ~= "table" then error("table attendue, type fournit : " .. type(tab), 2) end
local longeur = 0
for _ in pairs(tab) do longeur = longeur + 1 end
--> Retour
return longeur
end
module["longeur"] = longeur
module["length"] = longeur
module["len"] = longeur
--{ Affiche le contenu de <tab>
function afficher(tab, read)
if read == nil then read = false end
if type(tab) ~= "table" then error("argument #1 table attendue, " .. type(tab) .. " fournit ", 2) end
if type(read) ~= "boolean" then error("argument #2 boolean attendu, " .. type(read) .. " fournit ", 2) end
if read then term = require("term") end
for k, v in pairs(tab) do
print(k, v, "\n")
if read then term.read() end
end
end
module["ls"] = afficher
module["aff"] = afficher
module["afficher"] = afficher
module["print"] = afficher
--{ Affiche les clés de <tab>
function afficherCles(tab, read)
if read == nil then read = false end
if type(tab) ~= "table" then error("argument #1 table attendue, " .. type(tab) .. " fournit ", 2) end
if type(read) ~= "boolean" then error("argument #2 boolean attendu, " .. type(read) .. " fournit ", 2) end
if read then term = require("term") end
for cle, val in pairs(tab) do
print(cle, "\n")
if read then term.read() end
end
end
module["keys"] = afficherCles
module["cles"] = afficherCles
--{ Affiche les valeurs de <tab>
function afficherVal(tab, read)
if read == nil then read = false end
if type(tab) ~= "table" then error("argument #1 table attendue, " .. type(tab) .. " fournit ", 2) end
if type(read) ~= "boolean" then error("argument #2 boolean attendu, " .. type(read) .. " fournit ", 2) end
if read then term = require("term") end
for cle, val in pairs(tab) do
print(val, "\n")
if read then term.read() end
end
end
module["vals"] = afficherVal
module["valeurs"] = afficherVal
module["values"] = afficherVal
function estEgale(tab, prof)
end
return module