comparison src/luan/modules/TableLuan.java @ 1704:19df8abc9805

add Table.is_list
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 01 Jul 2022 15:53:03 -0600
parents c922446f53aa
children 8d257d56dc42
comparison
equal deleted inserted replaced
1703:3a61451f8130 1704:19df8abc9805
130 130
131 public static LuanTable toTable(Luan luan,Object obj) { 131 public static LuanTable toTable(Luan luan,Object obj) {
132 return luan.toTable(obj); 132 return luan.toTable(obj);
133 } 133 }
134 134
135 public static boolean is_list(LuanTable tbl) throws LuanException {
136 return tbl.isList();
137 }
138
135 } 139 }