comparison core/src/luan/modules/Table.luan @ 565:22bfd8a2eaee

do Table documentation; replace Table.clone and Table.sub_list with Table.copy;
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 05 Jul 2015 00:47:00 -0600
parents 92c3d22745b8
children 1e69d9c21461
comparison
equal deleted inserted replaced
564:c8d4d69c6dd4 565:22bfd8a2eaee
1 java() 1 java()
2 local TableLuan = require "java:luan.modules.TableLuan" 2 local TableLuan = require "java:luan.modules.TableLuan"
3 3
4 local M = {} 4 local M = {}
5 5
6 M.clone = TableLuan.clone
7 M.concat = TableLuan.concat 6 M.concat = TableLuan.concat
7 M.copy = TableLuan.copy
8 M.insert = TableLuan.insert 8 M.insert = TableLuan.insert
9 M.new_property_table = TableLuan.new_property_table 9 M.new_property_table = TableLuan.new_property_table
10 M.pack = TableLuan.pack 10 M.pack = TableLuan.pack
11 M.remove = TableLuan.remove 11 M.remove = TableLuan.remove
12 M.sort = TableLuan.sort 12 M.sort = TableLuan.sort
13 M.sub_list = TableLuan.sub_list
14 M.unpack = TableLuan.unpack 13 M.unpack = TableLuan.unpack
15 14
16 15
17 local Luan = require "luan:Luan" 16 local Luan = require "luan:Luan"
18 local pairs = Luan.pairs 17 local pairs = Luan.pairs