1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<head>
<title>Penlight Documentation</title>
<link rel="stylesheet" href="../ldoc_fixed.css" type="text/css" />
</head>
<body>
<div id="container">
<div id="product">
<div id="product_logo"></div>
<div id="product_name"><big><b></b></big></div>
<div id="product_description"></div>
</div> <!-- id="product" -->
<div id="main">
<!-- Menu -->
<div id="navigation">
<br/>
<h1>Penlight</h1>
<ul>
<li><a href="https://github.com/lunarmodules/Penlight">GitHub Project</a></li>
<li><a href="../index.html">Documentation</a></li>
</ul>
<h2>Contents</h2>
<ul>
<li><a href="#Functions">Functions</a></li>
<li><a href="#Copying">Copying</a></li>
<li><a href="#Comparing">Comparing</a></li>
<li><a href="#Finding">Finding</a></li>
<li><a href="#MappingAndFiltering">MappingAndFiltering</a></li>
<li><a href="#Iterating">Iterating</a></li>
<li><a href="#Extraction">Extraction</a></li>
<li><a href="#Merging">Merging</a></li>
</ul>
<h2>Libraries</h2>
<ul class="nowrap">
<li><a href="../libraries/pl.html">pl</a></li>
<li><a href="../libraries/pl.app.html">pl.app</a></li>
<li><a href="../libraries/pl.array2d.html">pl.array2d</a></li>
<li><a href="../libraries/pl.class.html">pl.class</a></li>
<li><a href="../libraries/pl.compat.html">pl.compat</a></li>
<li><a href="../libraries/pl.comprehension.html">pl.comprehension</a></li>
<li><a href="../libraries/pl.config.html">pl.config</a></li>
<li><a href="../libraries/pl.data.html">pl.data</a></li>
<li><a href="../libraries/pl.dir.html">pl.dir</a></li>
<li><a href="../libraries/pl.file.html">pl.file</a></li>
<li><a href="../libraries/pl.func.html">pl.func</a></li>
<li><a href="../libraries/pl.import_into.html">pl.import_into</a></li>
<li><a href="../libraries/pl.input.html">pl.input</a></li>
<li><a href="../libraries/pl.lapp.html">pl.lapp</a></li>
<li><a href="../libraries/pl.lexer.html">pl.lexer</a></li>
<li><a href="../libraries/pl.luabalanced.html">pl.luabalanced</a></li>
<li><a href="../libraries/pl.operator.html">pl.operator</a></li>
<li><a href="../libraries/pl.path.html">pl.path</a></li>
<li><a href="../libraries/pl.permute.html">pl.permute</a></li>
<li><a href="../libraries/pl.pretty.html">pl.pretty</a></li>
<li><a href="../libraries/pl.seq.html">pl.seq</a></li>
<li><a href="../libraries/pl.sip.html">pl.sip</a></li>
<li><a href="../libraries/pl.strict.html">pl.strict</a></li>
<li><a href="../libraries/pl.stringio.html">pl.stringio</a></li>
<li><a href="../libraries/pl.stringx.html">pl.stringx</a></li>
<li><strong>pl.tablex</strong></li>
<li><a href="../libraries/pl.template.html">pl.template</a></li>
<li><a href="../libraries/pl.test.html">pl.test</a></li>
<li><a href="../libraries/pl.text.html">pl.text</a></li>
<li><a href="../libraries/pl.types.html">pl.types</a></li>
<li><a href="../libraries/pl.url.html">pl.url</a></li>
<li><a href="../libraries/pl.utils.html">pl.utils</a></li>
<li><a href="../libraries/pl.xml.html">pl.xml</a></li>
</ul>
<h2>Classes</h2>
<ul class="nowrap">
<li><a href="../classes/pl.Date.html">pl.Date</a></li>
<li><a href="../classes/pl.List.html">pl.List</a></li>
<li><a href="../classes/pl.Map.html">pl.Map</a></li>
<li><a href="../classes/pl.MultiMap.html">pl.MultiMap</a></li>
<li><a href="../classes/pl.OrderedMap.html">pl.OrderedMap</a></li>
<li><a href="../classes/pl.Set.html">pl.Set</a></li>
</ul>
<h2>Manual</h2>
<ul class="nowrap">
<li><a href="../manual/01-introduction.md.html">Introduction</a></li>
<li><a href="../manual/02-arrays.md.html">Tables and Arrays</a></li>
<li><a href="../manual/03-strings.md.html">Strings. Higher-level operations on strings.</a></li>
<li><a href="../manual/04-paths.md.html">Paths and Directories</a></li>
<li><a href="../manual/05-dates.md.html">Date and Time</a></li>
<li><a href="../manual/06-data.md.html">Data</a></li>
<li><a href="../manual/07-functional.md.html">Functional Programming</a></li>
<li><a href="../manual/08-additional.md.html">Additional Libraries</a></li>
<li><a href="../manual/09-discussion.md.html">Technical Choices</a></li>
</ul>
<h2>Examples</h2>
<ul class="nowrap">
<li><a href="../examples/seesubst.lua.html">seesubst.lua</a></li>
<li><a href="../examples/sipscan.lua.html">sipscan.lua</a></li>
<li><a href="../examples/symbols.lua.html">symbols.lua</a></li>
<li><a href="../examples/test-cmp.lua.html">test-cmp.lua</a></li>
<li><a href="../examples/test-data.lua.html">test-data.lua</a></li>
<li><a href="../examples/test-listcallbacks.lua.html">test-listcallbacks.lua</a></li>
<li><a href="../examples/test-pretty.lua.html">test-pretty.lua</a></li>
<li><a href="../examples/test-symbols.lua.html">test-symbols.lua</a></li>
<li><a href="../examples/testclone.lua.html">testclone.lua</a></li>
<li><a href="../examples/testconfig.lua.html">testconfig.lua</a></li>
<li><a href="../examples/testglobal.lua.html">testglobal.lua</a></li>
<li><a href="../examples/testinputfields.lua.html">testinputfields.lua</a></li>
<li><a href="../examples/testinputfields2.lua.html">testinputfields2.lua</a></li>
<li><a href="../examples/testxml.lua.html">testxml.lua</a></li>
<li><a href="../examples/which.lua.html">which.lua</a></li>
</ul>
</div>
<div id="content">
<h1>Module <code>pl.tablex</code></h1>
<p>Extended operations on Lua tables.</p>
<p> See <a href="../manual/02-arrays.md.html#Useful_Operations_on_Tables">the Guide</a></p>
<p> Dependencies: <a href="../libraries/pl.utils.html#">pl.utils</a>, <a href="../libraries/pl.types.html#">pl.types</a></p>
<h2><a href="#Functions">Functions</a></h2>
<table class="function_list">
<tr>
<td class="name" nowrap><a href="#size">size (t)</a></td>
<td class="summary">total number of elements in this table.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#index_by">index_by (tbl, idx)</a></td>
<td class="summary">return a list of all values in a table indexed by another list.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#transform">transform (fun, t, ...)</a></td>
<td class="summary">apply a function to all values of a table, in-place.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#range">range (start, finish[, step=1])</a></td>
<td class="summary">generate a table of all numbers in a range.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#reduce">reduce (fun, t, memo)</a></td>
<td class="summary">'reduce' a list using a binary function.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#index_map">index_map (t)</a></td>
<td class="summary">create an index map from a list-like table.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#makeset">makeset (t)</a></td>
<td class="summary">create a set from a list-like table.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#union">union (t1, t2)</a></td>
<td class="summary">the union of two map-like tables.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#intersection">intersection (t1, t2)</a></td>
<td class="summary">the intersection of two map-like tables.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#count_map">count_map (t, cmp)</a></td>
<td class="summary">A table where the key/values are the values and value counts of the table.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#set">set (t, val[, i1=1[, i2=#t]])</a></td>
<td class="summary">set an array range to a value.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#new">new (n, val)</a></td>
<td class="summary">create a new array of specified size with initial value.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#clear">clear (t, istart)</a></td>
<td class="summary">clear out the contents of a table.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#removevalues">removevalues (t, i1, i2)</a></td>
<td class="summary">remove a range of values from a table.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#readonly">readonly (t)</a></td>
<td class="summary">modifies a table to be read only.</td>
</tr>
</table>
<h2><a href="#Copying">Copying</a></h2>
<table class="function_list">
<tr>
<td class="name" nowrap><a href="#update">update (t1, t2)</a></td>
<td class="summary">copy a table into another, in-place.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#copy">copy (t)</a></td>
<td class="summary">make a shallow copy of a table</td>
</tr>
<tr>
<td class="name" nowrap><a href="#deepcopy">deepcopy (t)</a></td>
<td class="summary">make a deep copy of a table, recursively copying all the keys and fields.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#icopy">icopy (dest, src[, idest=1[, isrc=1[, nsrc=#src]]])</a></td>
<td class="summary">copy an array into another one, clearing <code>dest</code> after <code>idest+nsrc</code>, if necessary.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#move">move (dest, src[, idest=1[, isrc=1[, nsrc=#src]]])</a></td>
<td class="summary">copy an array into another one.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#insertvalues">insertvalues (t[, position], values)</a></td>
<td class="summary">insert values into a table.</td>
</tr>
</table>
<h2><a href="#Comparing">Comparing</a></h2>
<table class="function_list">
<tr>
<td class="name" nowrap><a href="#deepcompare">deepcompare (t1, t2[, ignore_mt[, eps]])</a></td>
<td class="summary">compare two values.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#compare">compare (t1, t2, cmp)</a></td>
<td class="summary">compare two arrays using a predicate.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#compare_no_order">compare_no_order (t1, t2, cmp)</a></td>
<td class="summary">compare two list-like tables using an optional predicate, without regard for element order.</td>
</tr>
</table>
<h2><a href="#Finding">Finding</a></h2>
<table class="function_list">
<tr>
<td class="name" nowrap><a href="#find">find (t, val, idx)</a></td>
<td class="summary">return the index of a value in a list.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#rfind">rfind (t, val, idx)</a></td>
<td class="summary">return the index of a value in a list, searching from the end.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#find_if">find_if (t, cmp, arg)</a></td>
<td class="summary">return the index (or key) of a value in a table using a comparison function.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#search">search (t, value[, exclude])</a></td>
<td class="summary">find a value in a table by recursive search.</td>
</tr>
</table>
<h2><a href="#MappingAndFiltering">MappingAndFiltering</a></h2>
<table class="function_list">
<tr>
<td class="name" nowrap><a href="#map">map (fun, t, ...)</a></td>
<td class="summary">apply a function to all values of a table.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#imap">imap (fun, t, ...)</a></td>
<td class="summary">apply a function to all values of a list.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#map_named_method">map_named_method (name, t, ...)</a></td>
<td class="summary">apply a named method to values from a table.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#map2">map2 (fun, t1, t2, ...)</a></td>
<td class="summary">apply a function to values from two tables.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#imap2">imap2 (fun, t1, t2, ...)</a></td>
<td class="summary">apply a function to values from two arrays.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#mapn">mapn (fun, ..., fun)</a></td>
<td class="summary">Apply a function to a number of tables.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#pairmap">pairmap (fun, t, ...)</a></td>
<td class="summary">call the function with the key and value pairs from a table.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#filter">filter (t, pred, arg)</a></td>
<td class="summary">filter an array's values using a predicate function</td>
</tr>
</table>
<h2><a href="#Iterating">Iterating</a></h2>
<table class="function_list">
<tr>
<td class="name" nowrap><a href="#foreach">foreach (t, fun, ...)</a></td>
<td class="summary">apply a function to all elements of a table.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#foreachi">foreachi (t, fun, ...)</a></td>
<td class="summary">apply a function to all elements of a list-like table in order.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#sort">sort (t, f)</a></td>
<td class="summary">return an iterator to a table sorted by its keys</td>
</tr>
<tr>
<td class="name" nowrap><a href="#sortv">sortv (t, f)</a></td>
<td class="summary">return an iterator to a table sorted by its values</td>
</tr>
</table>
<h2><a href="#Extraction">Extraction</a></h2>
<table class="function_list">
<tr>
<td class="name" nowrap><a href="#keys">keys (t)</a></td>
<td class="summary">return all the keys of a table in arbitrary order.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#values">values (t)</a></td>
<td class="summary">return all the values of the table in arbitrary order</td>
</tr>
<tr>
<td class="name" nowrap><a href="#sub">sub (t, first, last)</a></td>
<td class="summary">Extract a range from a table, like 'string.sub'.</td>
</tr>
</table>
<h2><a href="#Merging">Merging</a></h2>
<table class="function_list">
<tr>
<td class="name" nowrap><a href="#merge">merge (t1, t2, dup)</a></td>
<td class="summary">combine two tables, either as union or intersection.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#difference">difference (s1, s2, symm)</a></td>
<td class="summary">a new table which is the difference of two tables.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#zip">zip (...)</a></td>
<td class="summary">return a table where each element is a table of the ith values of an arbitrary
number of tables.</td>
</tr>
</table>
<br/>
<br/>
<h2 class="section-header "><a name="Functions"></a>Functions</h2>
<dl class="function">
<dt>
<a name = "size"></a>
<strong>size (t)</strong>
</dt>
<dd>
total number of elements in this table.
Note that this is distinct from <code>#t</code>, which is the number
of values in the array part; this value will always
be greater or equal. The difference gives the size of
the hash part, for practical purposes. Works for any
object with a __pairs metamethod.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
a table
</li>
</ul>
<h3>Returns:</h3>
<ol>
the size
</ol>
</dd>
<dt>
<a name = "index_by"></a>
<strong>index_by (tbl, idx)</strong>
</dt>
<dd>
return a list of all values in a table indexed by another list.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">tbl</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
a table
</li>
<li><span class="parameter">idx</span>
<span class="types"><span class="type">array</span></span>
an index table (a list of keys)
</li>
</ul>
<h3>Returns:</h3>
<ol>
a list-like table
</ol>
<h3>Usage:</h3>
<ul>
<li><pre class="example"><span class="function-name">index_by</span>({<span class="number">10</span>,<span class="number">20</span>,<span class="number">30</span>,<span class="number">40</span>},{<span class="number">2</span>,<span class="number">4</span>}) == {<span class="number">20</span>,<span class="number">40</span>}</pre></li>
<li><pre class="example"><span class="function-name">index_by</span>({one=<span class="number">1</span>,two=<span class="number">2</span>,three=<span class="number">3</span>},{<span class="string">'one'</span>,<span class="string">'three'</span>}) == {<span class="number">1</span>,<span class="number">3</span>}</pre></li>
</ul>
</dd>
<dt>
<a name = "transform"></a>
<strong>transform (fun, t, ...)</strong>
</dt>
<dd>
apply a function to all values of a table, in-place.
Any extra arguments are passed to the function.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">fun</span>
<span class="types"><span class="type">function</span></span>
A function that takes at least one argument
</li>
<li><span class="parameter">t</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
a table
</li>
<li><span class="parameter">...</span>
extra arguments passed to <code>fun</code>
</li>
</ul>
<h3>See also:</h3>
<ul>
<a href="../libraries/pl.tablex.html#foreach">tablex.foreach</a>
</ul>
</dd>
<dt>
<a name = "range"></a>
<strong>range (start, finish[, step=1])</strong>
</dt>
<dd>
generate a table of all numbers in a range.
This is consistent with a numerical for loop.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">start</span>
<span class="types"><span class="type">integer</span></span>
number
</li>
<li><span class="parameter">finish</span>
<span class="types"><span class="type">integer</span></span>
number
</li>
<li><span class="parameter">step</span>
<span class="types"><span class="type">integer</span></span>
make this negative for start < finish
(<em>default</em> 1)
</li>
</ul>
</dd>
<dt>
<a name = "reduce"></a>
<strong>reduce (fun, t, memo)</strong>
</dt>
<dd>
'reduce' a list using a binary function.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">fun</span>
<span class="types"><span class="type">function</span></span>
a function of two arguments
</li>
<li><span class="parameter">t</span>
<span class="types"><span class="type">array</span></span>
a list-like table
</li>
<li><span class="parameter">memo</span>
<span class="types"><span class="type">array</span></span>
optional initial memo value. Defaults to first value in table.
</li>
</ul>
<h3>Returns:</h3>
<ol>
the result of the function
</ol>
<h3>Usage:</h3>
<ul>
<pre class="example"><span class="function-name">reduce</span>(<span class="string">'+'</span>,{<span class="number">1</span>,<span class="number">2</span>,<span class="number">3</span>,<span class="number">4</span>}) == <span class="number">10</span></pre>
</ul>
</dd>
<dt>
<a name = "index_map"></a>
<strong>index_map (t)</strong>
</dt>
<dd>
create an index map from a list-like table. The original values become keys,
and the associated values are the indices into the original list.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t</span>
<span class="types"><span class="type">array</span></span>
a list-like table
</li>
</ul>
<h3>Returns:</h3>
<ol>
a map-like table
</ol>
</dd>
<dt>
<a name = "makeset"></a>
<strong>makeset (t)</strong>
</dt>
<dd>
create a set from a list-like table. A set is a table where the original values
become keys, and the associated values are all true.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t</span>
<span class="types"><span class="type">array</span></span>
a list-like table
</li>
</ul>
<h3>Returns:</h3>
<ol>
a set (a map-like table)
</ol>
</dd>
<dt>
<a name = "union"></a>
<strong>union (t1, t2)</strong>
</dt>
<dd>
the union of two map-like tables.
If there are duplicate keys, the second table wins.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t1</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
a table
</li>
<li><span class="parameter">t2</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
a table
</li>
</ul>
<h3>Returns:</h3>
<ol>
<span class="types"><span class="type">tab</span></span>
</ol>
<h3>See also:</h3>
<ul>
<a href="../libraries/pl.tablex.html#merge">tablex.merge</a>
</ul>
</dd>
<dt>
<a name = "intersection"></a>
<strong>intersection (t1, t2)</strong>
</dt>
<dd>
the intersection of two map-like tables.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t1</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
a table
</li>
<li><span class="parameter">t2</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
a table
</li>
</ul>
<h3>Returns:</h3>
<ol>
<span class="types"><span class="type">tab</span></span>
</ol>
<h3>See also:</h3>
<ul>
<a href="../libraries/pl.tablex.html#merge">tablex.merge</a>
</ul>
</dd>
<dt>
<a name = "count_map"></a>
<strong>count_map (t, cmp)</strong>
</dt>
<dd>
A table where the key/values are the values and value counts of the table.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t</span>
<span class="types"><span class="type">array</span></span>
a list-like table
</li>
<li><span class="parameter">cmp</span>
<span class="types"><span class="type">function</span></span>
a function that defines equality (otherwise uses ==)
</li>
</ul>
<h3>Returns:</h3>
<ol>
a map-like table
</ol>
<h3>See also:</h3>
<ul>
<a href="../libraries/pl.seq.html#count_map">seq.count_map</a>
</ul>
</dd>
<dt>
<a name = "set"></a>
<strong>set (t, val[, i1=1[, i2=#t]])</strong>
</dt>
<dd>
set an array range to a value. If it's a function we use the result
of applying it to the indices.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t</span>
<span class="types"><span class="type">array</span></span>
a list-like table
</li>
<li><span class="parameter">val</span>
a value
</li>
<li><span class="parameter">i1</span>
<span class="types"><span class="type">integer</span></span>
start range
(<em>default</em> 1)
</li>
<li><span class="parameter">i2</span>
<span class="types"><span class="type">integer</span></span>
end range
(<em>default</em> #t)
</li>
</ul>
</dd>
<dt>
<a name = "new"></a>
<strong>new (n, val)</strong>
</dt>
<dd>
create a new array of specified size with initial value.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">n</span>
<span class="types"><span class="type">integer</span></span>
size
</li>
<li><span class="parameter">val</span>
initial value (can be <code>nil</code>, but don't expect <code>#</code> to work!)
</li>
</ul>
<h3>Returns:</h3>
<ol>
the table
</ol>
</dd>
<dt>
<a name = "clear"></a>
<strong>clear (t, istart)</strong>
</dt>
<dd>
clear out the contents of a table.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t</span>
<span class="types"><span class="type">array</span></span>
a list
</li>
<li><span class="parameter">istart</span>
optional start position
</li>
</ul>
</dd>
<dt>
<a name = "removevalues"></a>
<strong>removevalues (t, i1, i2)</strong>
</dt>
<dd>
remove a range of values from a table.
End of range may be negative.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t</span>
<span class="types"><span class="type">array</span></span>
a list-like table
</li>
<li><span class="parameter">i1</span>
<span class="types"><span class="type">integer</span></span>
start index
</li>
<li><span class="parameter">i2</span>
<span class="types"><span class="type">integer</span></span>
end index
</li>
</ul>
<h3>Returns:</h3>
<ol>
the table
</ol>
</dd>
<dt>
<a name = "readonly"></a>
<strong>readonly (t)</strong>
</dt>
<dd>
modifies a table to be read only.
This only offers weak protection. Tables can still be modified with
<a href="https://www.lua.org/manual/5.4/manual.html#pdf-table.insert">table.insert</a> and <a href="https://www.lua.org/manual/5.4/manual.html#pdf-rawset">rawset</a>.</p>
<p> <em>NOTE</em>: for Lua 5.1 length, pairs and ipairs will not work, since the
equivalent metamethods are only available in Lua 5.2 and newer.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
the table
</li>
</ul>
<h3>Returns:</h3>
<ol>
the table read only (a proxy).
</ol>
</dd>
</dl>
<h2 class="section-header "><a name="Copying"></a>Copying</h2>
<dl class="function">
<dt>
<a name = "update"></a>
<strong>update (t1, t2)</strong>
</dt>
<dd>
copy a table into another, in-place.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t1</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
destination table
</li>
<li><span class="parameter">t2</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
source (actually any iterable object)
</li>
</ul>
<h3>Returns:</h3>
<ol>
first table
</ol>
</dd>
<dt>
<a name = "copy"></a>
<strong>copy (t)</strong>
</dt>
<dd>
make a shallow copy of a table
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
an iterable source
</li>
</ul>
<h3>Returns:</h3>
<ol>
new table
</ol>
</dd>
<dt>
<a name = "deepcopy"></a>
<strong>deepcopy (t)</strong>
</dt>
<dd>
make a deep copy of a table, recursively copying all the keys and fields.
This supports cycles in tables; cycles will be reproduced in the copy.
This will also set the copied table's metatable to that of the original.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
A table
</li>
</ul>
<h3>Returns:</h3>
<ol>
new table
</ol>
</dd>
<dt>
<a name = "icopy"></a>
<strong>icopy (dest, src[, idest=1[, isrc=1[, nsrc=#src]]])</strong>
</dt>
<dd>
copy an array into another one, clearing <code>dest</code> after <code>idest+nsrc</code>, if necessary.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">dest</span>
<span class="types"><span class="type">array</span></span>
a list-like table
</li>
<li><span class="parameter">src</span>
<span class="types"><span class="type">array</span></span>
a list-like table
</li>
<li><span class="parameter">idest</span>
<span class="types"><span class="type">integer</span></span>
where to start copying values into destination
(<em>default</em> 1)
</li>
<li><span class="parameter">isrc</span>
<span class="types"><span class="type">integer</span></span>
where to start copying values from source
(<em>default</em> 1)
</li>
<li><span class="parameter">nsrc</span>
<span class="types"><span class="type">integer</span></span>
number of elements to copy from source
(<em>default</em> #src)
</li>
</ul>
</dd>
<dt>
<a name = "move"></a>
<strong>move (dest, src[, idest=1[, isrc=1[, nsrc=#src]]])</strong>
</dt>
<dd>
copy an array into another one.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">dest</span>
<span class="types"><span class="type">array</span></span>
a list-like table
</li>
<li><span class="parameter">src</span>
<span class="types"><span class="type">array</span></span>
a list-like table
</li>
<li><span class="parameter">idest</span>
<span class="types"><span class="type">integer</span></span>
where to start copying values into destination
(<em>default</em> 1)
</li>
<li><span class="parameter">isrc</span>
<span class="types"><span class="type">integer</span></span>
where to start copying values from source
(<em>default</em> 1)
</li>
<li><span class="parameter">nsrc</span>
<span class="types"><span class="type">integer</span></span>
number of elements to copy from source
(<em>default</em> #src)
</li>
</ul>
</dd>
<dt>
<a name = "insertvalues"></a>
<strong>insertvalues (t[, position], values)</strong>
</dt>
<dd>
insert values into a table.
similar to <a href="https://www.lua.org/manual/5.4/manual.html#pdf-table.insert">table.insert</a> but inserts values from given table <a href="../libraries/pl.tablex.html#values">values</a>,
not the object itself, into table <code>t</code> at position <code>pos</code>.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t</span>
<span class="types"><span class="type">array</span></span>
the list
</li>
<li><span class="parameter">position</span>
<span class="types"><span class="type">integer</span></span>
(default is at end)
(<em>optional</em>)
</li>
<li><span class="parameter">values</span>
<span class="types"><span class="type">array</span></span>
</li>
</ul>
</dd>
</dl>
<h2 class="section-header "><a name="Comparing"></a>Comparing</h2>
<dl class="function">
<dt>
<a name = "deepcompare"></a>
<strong>deepcompare (t1, t2[, ignore_mt[, eps]])</strong>
</dt>
<dd>
compare two values.
if they are tables, then compare their keys and fields recursively.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t1</span>
A value
</li>
<li><span class="parameter">t2</span>
A value
</li>
<li><span class="parameter">ignore_mt</span>
<span class="types"><span class="type">boolean</span></span>
if true, ignore __eq metamethod (default false)
(<em>optional</em>)
</li>
<li><span class="parameter">eps</span>
<span class="types"><span class="type">number</span></span>
if defined, then used for any number comparisons
(<em>optional</em>)
</li>
</ul>
<h3>Returns:</h3>
<ol>
true or false
</ol>
</dd>
<dt>
<a name = "compare"></a>
<strong>compare (t1, t2, cmp)</strong>
</dt>
<dd>
compare two arrays using a predicate.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t1</span>
<span class="types"><span class="type">array</span></span>
an array
</li>
<li><span class="parameter">t2</span>
<span class="types"><span class="type">array</span></span>
an array
</li>
<li><span class="parameter">cmp</span>
<span class="types"><span class="type">function</span></span>
A comparison function; <code>bool = cmp(t1_value, t2_value)</code>
</li>
</ul>
<h3>Returns:</h3>
<ol>
true or false
</ol>
<h3>Usage:</h3>
<ul>
<pre class="example"><span class="global">assert</span>(tablex.<span class="function-name">compare</span>({ <span class="number">1</span>, <span class="number">2</span>, <span class="number">3</span> }, { <span class="number">1</span>, <span class="number">2</span>, <span class="number">3</span> }, <span class="string">"=="</span>))
<span class="global">assert</span>(tablex.<span class="function-name">compare</span>(
{<span class="number">1</span>,<span class="number">2</span>,<span class="number">3</span>, hello = <span class="string">"world"</span>}, <span class="comment">-- fields are not compared!
</span> {<span class="number">1</span>,<span class="number">2</span>,<span class="number">3</span>}, <span class="keyword">function</span>(v1, v2) <span class="keyword">return</span> v1 == v2 <span class="keyword">end</span>)</pre>
</ul>
</dd>
<dt>
<a name = "compare_no_order"></a>
<strong>compare_no_order (t1, t2, cmp)</strong>
</dt>
<dd>
compare two list-like tables using an optional predicate, without regard for element order.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t1</span>
<span class="types"><span class="type">array</span></span>
a list-like table
</li>
<li><span class="parameter">t2</span>
<span class="types"><span class="type">array</span></span>
a list-like table
</li>
<li><span class="parameter">cmp</span>
A comparison function (may be nil)
</li>
</ul>
</dd>
</dl>
<h2 class="section-header "><a name="Finding"></a>Finding</h2>
<dl class="function">
<dt>
<a name = "find"></a>
<strong>find (t, val, idx)</strong>
</dt>
<dd>
return the index of a value in a list.
Like string.find, there is an optional index to start searching,
which can be negative.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t</span>
<span class="types"><span class="type">array</span></span>
A list-like table
</li>
<li><span class="parameter">val</span>
A value
</li>
<li><span class="parameter">idx</span>
<span class="types"><span class="type">integer</span></span>
index to start; -1 means last element,etc (default 1)
</li>
</ul>
<h3>Returns:</h3>
<ol>
index of value or nil if not found
</ol>
<h3>Usage:</h3>
<ul>
<li><pre class="example"><span class="function-name">find</span>({<span class="number">10</span>,<span class="number">20</span>,<span class="number">30</span>},<span class="number">20</span>) == <span class="number">2</span></pre></li>
<li><pre class="example"><span class="function-name">find</span>({<span class="string">'a'</span>,<span class="string">'b'</span>,<span class="string">'a'</span>,<span class="string">'c'</span>},<span class="string">'a'</span>,<span class="number">2</span>) == <span class="number">3</span></pre></li>
</ul>
</dd>
<dt>
<a name = "rfind"></a>
<strong>rfind (t, val, idx)</strong>
</dt>
<dd>
return the index of a value in a list, searching from the end.
Like string.find, there is an optional index to start searching,
which can be negative.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t</span>
<span class="types"><span class="type">array</span></span>
A list-like table
</li>
<li><span class="parameter">val</span>
A value
</li>
<li><span class="parameter">idx</span>
index to start; -1 means last element,etc (default <code>#t</code>)
</li>
</ul>
<h3>Returns:</h3>
<ol>
index of value or nil if not found
</ol>
<h3>Usage:</h3>
<ul>
<pre class="example"><span class="function-name">rfind</span>({<span class="number">10</span>,<span class="number">10</span>,<span class="number">10</span>},<span class="number">10</span>) == <span class="number">3</span></pre>
</ul>
</dd>
<dt>
<a name = "find_if"></a>
<strong>find_if (t, cmp, arg)</strong>
</dt>
<dd>
return the index (or key) of a value in a table using a comparison function. </p>
<p> <em>NOTE</em>: the 2nd return value of this function, the value returned
by the comparison function, has a limitation that it cannot be <code>false</code>.
Because if it is, then it indicates the comparison failed, and the
function will continue the search. See examples.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
A table
</li>
<li><span class="parameter">cmp</span>
<span class="types"><span class="type">function</span></span>
A comparison function
</li>
<li><span class="parameter">arg</span>
an optional second argument to the function
</li>
</ul>
<h3>Returns:</h3>
<ol>
<li>
index of value, or nil if not found</li>
<li>
value returned by comparison function (cannot be <code>false</code>!)</li>
</ol>
<h3>Usage:</h3>
<ul>
<pre class="example"><span class="comment">-- using an operator
</span><span class="keyword">local</span> lst = { <span class="string">"Rudolph"</span>, <span class="keyword">true</span>, <span class="keyword">false</span>, <span class="number">15</span> }
<span class="keyword">local</span> idx, cmp_result = tablex.<span class="function-name">rfind</span>(lst, <span class="string">"=="</span>, <span class="string">"Rudolph"</span>)
<span class="global">assert</span>(idx == <span class="number">1</span>)
<span class="global">assert</span>(cmp_result == <span class="keyword">true</span>)
<span class="keyword">local</span> idx, cmp_result = tablex.<span class="function-name">rfind</span>(lst, <span class="string">"=="</span>, <span class="keyword">false</span>)
<span class="global">assert</span>(idx == <span class="number">3</span>)
<span class="global">assert</span>(cmp_result == <span class="keyword">true</span>) <span class="comment">-- looking up 'false' works!
</span>
<span class="comment">-- using a function returning the value looked up
</span><span class="keyword">local</span> cmp = <span class="keyword">function</span>(v1, v2) <span class="keyword">return</span> v1 == v2 <span class="keyword">and</span> v2 <span class="keyword">end</span>
<span class="keyword">local</span> idx, cmp_result = tablex.<span class="function-name">rfind</span>(lst, cmp, <span class="string">"Rudolph"</span>)
<span class="global">assert</span>(idx == <span class="number">1</span>)
<span class="global">assert</span>(cmp_result == <span class="string">"Rudolph"</span>) <span class="comment">-- the value is returned
</span>
<span class="comment">-- NOTE: this fails, since 'false' cannot be returned!
</span><span class="keyword">local</span> idx, cmp_result = tablex.<span class="function-name">rfind</span>(lst, cmp, <span class="keyword">false</span>)
<span class="global">assert</span>(idx == <span class="keyword">nil</span>) <span class="comment">-- looking up 'false' failed!
</span><span class="global">assert</span>(cmp_result == <span class="keyword">nil</span>)</pre>
</ul>
</dd>
<dt>
<a name = "search"></a>
<strong>search (t, value[, exclude])</strong>
</dt>
<dd>
find a value in a table by recursive search.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
the table
</li>
<li><span class="parameter">value</span>
the value
</li>
<li><span class="parameter">exclude</span>
<span class="types"><span class="type">array</span></span>
any tables to avoid searching
(<em>optional</em>)
</li>
</ul>
<h3>Returns:</h3>
<ol>
a fieldspec, e.g. 'a.b' or 'math.sin'
</ol>
<h3>Usage:</h3>
<ul>
<pre class="example"><span class="function-name">search</span>(_G,<span class="global">math</span>.sin,{<span class="global">package</span>.path}) == <span class="string">'math.sin'</span></pre>
</ul>
</dd>
</dl>
<h2 class="section-header "><a name="MappingAndFiltering"></a>MappingAndFiltering</h2>
<dl class="function">
<dt>
<a name = "map"></a>
<strong>map (fun, t, ...)</strong>
</dt>
<dd>
apply a function to all values of a table.
This returns a table of the results.
Any extra arguments are passed to the function.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">fun</span>
<span class="types"><span class="type">function</span></span>
A function that takes at least one argument
</li>
<li><span class="parameter">t</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
A table
</li>
<li><span class="parameter">...</span>
optional arguments
</li>
</ul>
<h3>Usage:</h3>
<ul>
<pre class="example"><span class="function-name">map</span>(<span class="keyword">function</span>(v) <span class="keyword">return</span> v*v <span class="keyword">end</span>, {<span class="number">10</span>,<span class="number">20</span>,<span class="number">30</span>,fred=<span class="number">2</span>}) <span class="function-name">is</span> {<span class="number">100</span>,<span class="number">400</span>,<span class="number">900</span>,fred=<span class="number">4</span>}</pre>
</ul>
</dd>
<dt>
<a name = "imap"></a>
<strong>imap (fun, t, ...)</strong>
</dt>
<dd>
apply a function to all values of a list.
This returns a table of the results.
Any extra arguments are passed to the function.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">fun</span>
<span class="types"><span class="type">function</span></span>
A function that takes at least one argument
</li>
<li><span class="parameter">t</span>
<span class="types"><span class="type">array</span></span>
a table (applies to array part)
</li>
<li><span class="parameter">...</span>
optional arguments
</li>
</ul>
<h3>Returns:</h3>
<ol>
a list-like table
</ol>
<h3>Usage:</h3>
<ul>
<pre class="example"><span class="function-name">imap</span>(<span class="keyword">function</span>(v) <span class="keyword">return</span> v*v <span class="keyword">end</span>, {<span class="number">10</span>,<span class="number">20</span>,<span class="number">30</span>,fred=<span class="number">2</span>}) <span class="function-name">is</span> {<span class="number">100</span>,<span class="number">400</span>,<span class="number">900</span>}</pre>
</ul>
</dd>
<dt>
<a name = "map_named_method"></a>
<strong>map_named_method (name, t, ...)</strong>
</dt>
<dd>
apply a named method to values from a table.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">name</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.4">string</a></span>
the method name
</li>
<li><span class="parameter">t</span>
<span class="types"><span class="type">array</span></span>
a list-like table
</li>
<li><span class="parameter">...</span>
any extra arguments to the method
</li>
</ul>
<h3>Returns:</h3>
<ol>
a <a href="../classes/pl.List.html">List</a> with the results of the method (1st result only)
</ol>
<h3>Usage:</h3>
<ul>
<pre class="example"><span class="keyword">local</span> Car = {}
Car.__index = Car
<span class="keyword">function</span> Car.<span class="function-name">new</span>(car)
<span class="keyword">return</span> <span class="global">setmetatable</span>(car <span class="keyword">or</span> {}, Car)
<span class="keyword">end</span>
Car.speed = <span class="number">0</span>
<span class="keyword">function</span> Car:<span class="function-name">faster</span>(increase)
self.speed = self.speed + increase
<span class="keyword">return</span> self.speed
<span class="keyword">end</span>
<span class="keyword">local</span> ferrari = Car.<span class="function-name">new</span>{ name = <span class="string">"Ferrari"</span> }
<span class="keyword">local</span> lamborghini = Car.<span class="function-name">new</span>{ name = <span class="string">"Lamborghini"</span>, speed = <span class="number">50</span> }
<span class="keyword">local</span> cars = { ferrari, lamborghini }
<span class="global">assert</span>(ferrari.speed == <span class="number">0</span>)
<span class="global">assert</span>(lamborghini.speed == <span class="number">50</span>)
tablex.<span class="function-name">map_named_method</span>(<span class="string">"faster"</span>, cars, <span class="number">10</span>)
<span class="global">assert</span>(ferrari.speed == <span class="number">10</span>)
<span class="global">assert</span>(lamborghini.speed == <span class="number">60</span>)</pre>
</ul>
</dd>
<dt>
<a name = "map2"></a>
<strong>map2 (fun, t1, t2, ...)</strong>
</dt>
<dd>
apply a function to values from two tables.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">fun</span>
<span class="types"><span class="type">function</span></span>
a function of at least two arguments
</li>
<li><span class="parameter">t1</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
a table
</li>
<li><span class="parameter">t2</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
a table
</li>
<li><span class="parameter">...</span>
extra arguments
</li>
</ul>
<h3>Returns:</h3>
<ol>
a table
</ol>
<h3>Usage:</h3>
<ul>
<pre class="example"><span class="function-name">map2</span>(<span class="string">'+'</span>,{<span class="number">1</span>,<span class="number">2</span>,<span class="number">3</span>,m=<span class="number">4</span>},{<span class="number">10</span>,<span class="number">20</span>,<span class="number">30</span>,m=<span class="number">40</span>}) <span class="function-name">is</span> {<span class="number">11</span>,<span class="number">22</span>,<span class="number">23</span>,m=<span class="number">44</span>}</pre>
</ul>
</dd>
<dt>
<a name = "imap2"></a>
<strong>imap2 (fun, t1, t2, ...)</strong>
</dt>
<dd>
apply a function to values from two arrays.
The result will be the length of the shortest array.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">fun</span>
<span class="types"><span class="type">function</span></span>
a function of at least two arguments
</li>
<li><span class="parameter">t1</span>
<span class="types"><span class="type">array</span></span>
a list-like table
</li>
<li><span class="parameter">t2</span>
<span class="types"><span class="type">array</span></span>
a list-like table
</li>
<li><span class="parameter">...</span>
extra arguments
</li>
</ul>
<h3>Usage:</h3>
<ul>
<pre class="example"><span class="function-name">imap2</span>(<span class="string">'+'</span>,{<span class="number">1</span>,<span class="number">2</span>,<span class="number">3</span>,m=<span class="number">4</span>},{<span class="number">10</span>,<span class="number">20</span>,<span class="number">30</span>,m=<span class="number">40</span>}) <span class="function-name">is</span> {<span class="number">11</span>,<span class="number">22</span>,<span class="number">23</span>}</pre>
</ul>
</dd>
<dt>
<a name = "mapn"></a>
<strong>mapn (fun, ..., fun)</strong>
</dt>
<dd>
Apply a function to a number of tables.
A more general version of map
The result is a table containing the result of applying that function to the
ith value of each table. Length of output list is the minimum length of all the lists
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">fun</span>
A function that takes as many arguments as there are tables
</li>
<li><span class="parameter">...</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
n tables
</li>
<li><span class="parameter">fun</span>
A function that takes as many arguments as there are tables
</li>
</ul>
<h3>Usage:</h3>
<ul>
<li><pre class="example"><span class="function-name">mapn</span>(<span class="keyword">function</span>(x,y,z) <span class="keyword">return</span> x+y+z <span class="keyword">end</span>, {<span class="number">1</span>,<span class="number">2</span>,<span class="number">3</span>},{<span class="number">10</span>,<span class="number">20</span>,<span class="number">30</span>},{<span class="number">100</span>,<span class="number">200</span>,<span class="number">300</span>}) <span class="function-name">is</span> {<span class="number">111</span>,<span class="number">222</span>,<span class="number">333</span>}</pre></li>
<li><pre class="example"><span class="function-name">mapn</span>(<span class="global">math</span>.max, {<span class="number">1</span>,<span class="number">20</span>,<span class="number">300</span>},{<span class="number">10</span>,<span class="number">2</span>,<span class="number">3</span>},{<span class="number">100</span>,<span class="number">200</span>,<span class="number">100</span>}) <span class="function-name">is</span> {<span class="number">100</span>,<span class="number">200</span>,<span class="number">300</span>}</pre></li>
</ul>
</dd>
<dt>
<a name = "pairmap"></a>
<strong>pairmap (fun, t, ...)</strong>
</dt>
<dd>
call the function with the key and value pairs from a table.
The function can return a value and a key (note the order!). If both
are not nil, then this pair is inserted into the result: if the key already exists, we convert the value for that
key into a table and append into it. If only value is not nil, then it is appended to the result.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">fun</span>
<span class="types"><span class="type">function</span></span>
A function which will be passed each key and value as arguments, plus any extra arguments to pairmap.
</li>
<li><span class="parameter">t</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
A table
</li>
<li><span class="parameter">...</span>
optional arguments
</li>
</ul>
<h3>Usage:</h3>
<ul>
<li><pre class="example"><span class="function-name">pairmap</span>(<span class="keyword">function</span>(k,v) <span class="keyword">return</span> v <span class="keyword">end</span>,{fred=<span class="number">10</span>,bonzo=<span class="number">20</span>}) <span class="function-name">is</span> {<span class="number">10</span>,<span class="number">20</span>} <span class="function-name">_or_</span> {<span class="number">20</span>,<span class="number">10</span>}</pre></li>
<li><pre class="example"><span class="function-name">pairmap</span>(<span class="keyword">function</span>(k,v) <span class="keyword">return</span> {k,v},k <span class="keyword">end</span>,{one=<span class="number">1</span>,two=<span class="number">2</span>}) <span class="function-name">is</span> {one={<span class="string">'one'</span>,<span class="number">1</span>},two={<span class="string">'two'</span>,<span class="number">2</span>}}</pre></li>
</ul>
</dd>
<dt>
<a name = "filter"></a>
<strong>filter (t, pred, arg)</strong>
</dt>
<dd>
filter an array's values using a predicate function
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t</span>
<span class="types"><span class="type">array</span></span>
a list-like table
</li>
<li><span class="parameter">pred</span>
<span class="types"><span class="type">function</span></span>
a boolean function
</li>
<li><span class="parameter">arg</span>
optional argument to be passed as second argument of the predicate
</li>
</ul>
</dd>
</dl>
<h2 class="section-header "><a name="Iterating"></a>Iterating</h2>
<dl class="function">
<dt>
<a name = "foreach"></a>
<strong>foreach (t, fun, ...)</strong>
</dt>
<dd>
apply a function to all elements of a table.
The arguments to the function will be the value,
the key and <em>finally</em> any extra arguments passed to this function.
Note that the Lua 5.0 function table.foreach passed the <em>key</em> first.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
a table
</li>
<li><span class="parameter">fun</span>
<span class="types"><span class="type">function</span></span>
a function on the elements; <code>function(value, key, ...)</code>
</li>
<li><span class="parameter">...</span>
extra arguments passed to <code>fun</code>
</li>
</ul>
<h3>See also:</h3>
<ul>
<a href="../libraries/pl.tablex.html#transform">tablex.transform</a>
</ul>
</dd>
<dt>
<a name = "foreachi"></a>
<strong>foreachi (t, fun, ...)</strong>
</dt>
<dd>
apply a function to all elements of a list-like table in order.
The arguments to the function will be the value,
the index and <em>finally</em> any extra arguments passed to this function
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t</span>
<span class="types"><span class="type">array</span></span>
a table
</li>
<li><span class="parameter">fun</span>
<span class="types"><span class="type">function</span></span>
a function with at least one argument
</li>
<li><span class="parameter">...</span>
optional arguments
</li>
</ul>
</dd>
<dt>
<a name = "sort"></a>
<strong>sort (t, f)</strong>
</dt>
<dd>
return an iterator to a table sorted by its keys
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
the table
</li>
<li><span class="parameter">f</span>
<span class="types"><span class="type">function</span></span>
an optional comparison function (f(x,y) is true if x < y)
</li>
</ul>
<h3>Returns:</h3>
<ol>
an iterator to traverse elements sorted by the keys
</ol>
<h3>Usage:</h3>
<ul>
<pre class="example"><span class="keyword">for</span> k,v <span class="keyword">in</span> tablex.<span class="function-name">sort</span>(t) <span class="keyword">do</span> <span class="global">print</span>(k,v) <span class="keyword">end</span></pre>
</ul>
</dd>
<dt>
<a name = "sortv"></a>
<strong>sortv (t, f)</strong>
</dt>
<dd>
return an iterator to a table sorted by its values
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
the table
</li>
<li><span class="parameter">f</span>
<span class="types"><span class="type">function</span></span>
an optional comparison function (f(x,y) is true if x < y)
</li>
</ul>
<h3>Returns:</h3>
<ol>
an iterator to traverse elements sorted by the values
</ol>
<h3>Usage:</h3>
<ul>
<pre class="example"><span class="keyword">for</span> k,v <span class="keyword">in</span> tablex.<span class="function-name">sortv</span>(t) <span class="keyword">do</span> <span class="global">print</span>(k,v) <span class="keyword">end</span></pre>
</ul>
</dd>
</dl>
<h2 class="section-header "><a name="Extraction"></a>Extraction</h2>
<dl class="function">
<dt>
<a name = "keys"></a>
<strong>keys (t)</strong>
</dt>
<dd>
return all the keys of a table in arbitrary order.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
A list-like table where the values are the keys of the input table
</li>
</ul>
</dd>
<dt>
<a name = "values"></a>
<strong>values (t)</strong>
</dt>
<dd>
return all the values of the table in arbitrary order
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
A list-like table where the values are the values of the input table
</li>
</ul>
</dd>
<dt>
<a name = "sub"></a>
<strong>sub (t, first, last)</strong>
</dt>
<dd>
Extract a range from a table, like 'string.sub'.
If first or last are negative then they are relative to the end of the list
eg. sub(t,-2) gives last 2 entries in a list, and
sub(t,-4,-2) gives from -4th to -2nd
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t</span>
<span class="types"><span class="type">array</span></span>
a list-like table
</li>
<li><span class="parameter">first</span>
<span class="types"><span class="type">integer</span></span>
An index
</li>
<li><span class="parameter">last</span>
<span class="types"><span class="type">integer</span></span>
An index
</li>
</ul>
<h3>Returns:</h3>
<ol>
a new List
</ol>
</dd>
</dl>
<h2 class="section-header "><a name="Merging"></a>Merging</h2>
<dl class="function">
<dt>
<a name = "merge"></a>
<strong>merge (t1, t2, dup)</strong>
</dt>
<dd>
combine two tables, either as union or intersection. Corresponds to
set operations for sets () but more general. Not particularly
useful for list-like tables.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">t1</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
a table
</li>
<li><span class="parameter">t2</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
a table
</li>
<li><span class="parameter">dup</span>
<span class="types"><span class="type">boolean</span></span>
true for a union, false for an intersection.
</li>
</ul>
<h3>See also:</h3>
<ul>
<a href="../libraries/pl.tablex.html#index_map">tablex.index_map</a>
</ul>
<h3>Usage:</h3>
<ul>
<li><pre class="example"><span class="function-name">merge</span>({alice=<span class="number">23</span>,fred=<span class="number">34</span>},{bob=<span class="number">25</span>,fred=<span class="number">34</span>}) <span class="function-name">is</span> {fred=<span class="number">34</span>}</pre></li>
<li><pre class="example"><span class="function-name">merge</span>({alice=<span class="number">23</span>,fred=<span class="number">34</span>},{bob=<span class="number">25</span>,fred=<span class="number">34</span>},<span class="keyword">true</span>) <span class="function-name">is</span> {bob=<span class="number">25</span>,fred=<span class="number">34</span>,alice=<span class="number">23</span>}</pre></li>
</ul>
</dd>
<dt>
<a name = "difference"></a>
<strong>difference (s1, s2, symm)</strong>
</dt>
<dd>
a new table which is the difference of two tables.
With sets (where the values are all true) this is set difference and
symmetric difference depending on the third parameter.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">s1</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
a map-like table or set
</li>
<li><span class="parameter">s2</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.4/manual.html#6.6">table</a></span>
a map-like table or set
</li>
<li><span class="parameter">symm</span>
<span class="types"><span class="type">boolean</span></span>
symmetric difference (default false)
</li>
</ul>
<h3>Returns:</h3>
<ol>
a map-like table or set
</ol>
</dd>
<dt>
<a name = "zip"></a>
<strong>zip (...)</strong>
</dt>
<dd>
return a table where each element is a table of the ith values of an arbitrary
number of tables. It is equivalent to a matrix transpose.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">...</span>
<span class="types"><span class="type">array</span></span>
arrays to be zipped
</li>
</ul>
<h3>Usage:</h3>
<ul>
<pre class="example"><span class="function-name">zip</span>({<span class="number">10</span>,<span class="number">20</span>,<span class="number">30</span>},{<span class="number">100</span>,<span class="number">200</span>,<span class="number">300</span>}) <span class="function-name">is</span> {{<span class="number">10</span>,<span class="number">100</span>},{<span class="number">20</span>,<span class="number">200</span>},{<span class="number">30</span>,<span class="number">300</span>}}</pre>
</ul>
</dd>
</dl>
</div> <!-- id="content" -->
</div> <!-- id="main" -->
<div id="about">
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.5.0</a></i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
</body>
</html>
|