Home | History | Annotate | Download | only in lua

Lines Matching refs:array

57 function dump_array_as_C(array)
58 for k, v in next, array do
70 -- array is an array of bools (true), using glyphID as the index
71 -- other is just an array[1...N] of numbers (glyphIDs)
72 function array_union(array, other)
74 array[v] = true;
80 local array = {}
82 array[#array + 1] = k
84 table.sort(array)
85 return array
88 function array_count(array)
90 for k in next, array do