Changeset

6417:060b63a27e9b

util.array: Add type() local
author Kim Alvefur <zash@zash.se>
date Wed, 17 Sep 2014 14:50:44 +0200
parents 6416:9af742bb45b2
children 6418:ae798314347c 6420:0c070e30a7db
files util/array.lua
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
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 = {};