Diff

util/array.lua @ 6417:060b63a27e9b

util.array: Add type() local
author Kim Alvefur <zash@zash.se>
date Wed, 17 Sep 2014 14:50:44 +0200
parent 5857:8613888d0f9e
child 6777:5de6b93d0190
line wrap: on
line diff
--- a/util/array.lua	Wed Sep 17 14:50:00 2014 +0200
+++ b/util/array.lua	Wed Sep 17 14:50:44 2014 +0200
@@ -14,6 +14,7 @@
 local math_floor = math.floor;
 local pairs, ipairs = pairs, ipairs;
 local tostring = tostring;
+local type = type;
 
 local array = {};
 local array_base = {};