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
|
%% Automatically generated. Do not edit.
{srcfile, "application"}.
{appname, "stdlib"}.
{appvsn, "1.14.2"}.
{app, "stdlib_app"}.
{appsummary, "The STDLIB Application"}.
{module, "beam_lib"}.
{modulesummary, "An Interface To the BEAM File Format"}.
{name, "chunks/2"}.
{fsummary, "Read selected chunks from a BEAM file or binary "}.
{name, "version/1"}.
{fsummary, "Read the BEAM file's module version"}.
{name, "info/1"}.
{fsummary, "Information about a BEAM file"}.
{name, "cmp/2"}.
{fsummary, "Compare two BEAM files"}.
{name, "cmp_dirs/2"}.
{fsummary, "Compare the BEAM files in two directories"}.
{name, "diff_dirs/2"}.
{fsummary, "Compare the BEAM files in two directories"}.
{name, "strip/1"}.
{fsummary, "Removes chunks not needed by the loader from a BEAM file "}.
{name, "strip_files/1"}.
{fsummary, "Removes chunks not needed by the loader from BEAM files "}.
{name, "strip_release/1"}.
{fsummary, "Removes chunks not needed by the loader from all BEAM files of a release"}.
{name, "format_error/1"}.
{fsummary, "Return an English description of a BEAM read error reply "}.
{name, "crypto_key_fun/1"}.
{fsummary, "Register a fun that provides a crypto key"}.
{name, "clear_crypto_key_fun/0"}.
{fsummary, "Unregister the current crypto key fun"}.
{module, "c"}.
{modulesummary, "Command Interface Module"}.
{name, "bt/1"}.
{fsummary, "Stack backtrace for a process"}.
{name, "c/1"}.
{name, "c/2"}.
{fsummary, "Compile and load code in a file"}.
{name, "cd/1"}.
{fsummary, "Change working directory"}.
{name, "flush/0"}.
{fsummary, "Flush any messages sent to the shell"}.
{name, "help/0"}.
{fsummary, "Help information"}.
{name, "i/0"}.
{name, "ni/0"}.
{fsummary, "Information about the system"}.
{name, "i/3"}.
{fsummary, "Information about pid <X.Y.Z>"}.
{name, "l/1"}.
{fsummary, "Load or reload module"}.
{name, "lc/1"}.
{fsummary, "Compile a list of files"}.
{name, "ls/0"}.
{fsummary, "List files in the current directory"}.
{name, "ls/1"}.
{fsummary, "List files in a directory"}.
{name, "m/0"}.
{fsummary, "Which modules are loaded"}.
{name, "m/1"}.
{fsummary, "Information about a module"}.
{name, "memory/0"}.
{fsummary, "Memory allocation information"}.
{name, "memory/1"}.
{name, "memory/1"}.
{fsummary, "Memory allocation information"}.
{name, "nc/1"}.
{name, "nc/2"}.
{fsummary, "Compile and load code in a file on all nodes"}.
{name, "nl/1"}.
{fsummary, "Load module on all nodes"}.
{name, "pid/3"}.
{fsummary, "Convert X,Y,Z to a pid"}.
{name, "pwd/0"}.
{fsummary, "Print working directory"}.
{name, "q/0"}.
{fsummary, "Quit - shorthand for init:stop()"}.
{name, "regs/0"}.
{name, "nregs/0"}.
{fsummary, "Information about registered processes"}.
{name, "xm/1"}.
{fsummary, "Cross reference check a module"}.
{name, "y/1"}.
{fsummary, "Generate an LALR-1 parser"}.
{name, "y/2"}.
{fsummary, "Generate an LALR-1 parser"}.
{module, "calendar"}.
{modulesummary, "Local and universal time, day-of-the-week, date and time conversions"}.
{name, "date_to_gregorian_days/1"}.
{name, "date_to_gregorian_days/3"}.
{fsummary, "Compute the number of days from year 0 up to the given date"}.
{name, "datetime_to_gregorian_seconds/2"}.
{fsummary, "Compute the number of seconds from year 0 up to the given date and time"}.
{name, "day_of_the_week/1"}.
{name, "day_of_the_week/3"}.
{fsummary, "Compute the day of the week"}.
{name, "gregorian_days_to_date/1"}.
{fsummary, "Compute the date given the number of gregorian days "}.
{name, "gregorian_seconds_to_datetime/1"}.
{fsummary, "Compute the date given the number of gregorian days "}.
{name, "is_leap_year/1"}.
{fsummary, "Check if a year is a leap year"}.
{name, "last_day_of_the_month/2"}.
{fsummary, "Compute the number of days in a month"}.
{name, "local_time/0"}.
{fsummary, "Compute local time"}.
{name, "local_time_to_universal_time/2"}.
{fsummary, "Convert from local time to universal time (deprecated) "}.
{name, "local_time_to_universal_time_dst/2"}.
{fsummary, "Convert from local time to universal time(s)"}.
{name, "now_to_local_time/1"}.
{fsummary, "Convert now to local date and time"}.
{name, "now_to_universal_time/1"}.
{name, "now_to_datetime/1"}.
{fsummary, "Convert now to date and time"}.
{name, "seconds_to_daystime/1"}.
{fsummary, "Compute days and time from seconds"}.
{name, "seconds_to_time/1"}.
{fsummary, "Compute time from seconds"}.
{name, "time_difference/2"}.
{fsummary, "Compute the difference between two times (deprecated) "}.
{name, "time_to_seconds/1"}.
{fsummary, "Compute the number of seconds since midnight up to the given time"}.
{name, "universal_time/0"}.
{fsummary, "Compute universal time"}.
{name, "universal_time_to_local_time/2"}.
{fsummary, "Convert from universal time to local time"}.
{name, "valid_date/1"}.
{name, "valid_date/3"}.
{fsummary, "Check if a date is valid"}.
{module, "dets"}.
{modulesummary, "A Disk Based Term Storage"}.
{name, "all/0"}.
{fsummary, " Return a list of the names of all open Dets tables on this node. "}.
{name, "bchunk/2"}.
{fsummary, " Return a chunk of objects stored in a Dets table. "}.
{name, "close/1"}.
{fsummary, " Close a Dets table. "}.
{name, "delete/2"}.
{fsummary, " Delete all objects with a given key from a Dets table. "}.
{name, "delete_all_objects/1"}.
{fsummary, " Delete all objects from a Dets table. "}.
{name, "delete_object/2"}.
{fsummary, " Delete a given object from a Dets table. "}.
{name, "first/1"}.
{fsummary, " Return the first key stored in a Dets table. "}.
{name, "foldl/3"}.
{fsummary, " Fold a function over a Dets table. "}.
{name, "foldr/3"}.
{fsummary, " Fold a function over a Dets table. "}.
{name, "from_ets/2"}.
{fsummary, " Replace the objects of a Dets table with the objects of an Ets table. "}.
{name, "info/1"}.
{fsummary, " Return information about a Dets table. "}.
{name, "info/2"}.
{fsummary, " Return the information associated with a given item for a Dets table. "}.
{name, "init_table/3"}.
{fsummary, " Replace all objects of a Dets table. "}.
{name, "insert/2"}.
{fsummary, " Insert one or more objects into a Dets table. "}.
{name, "insert_new/2"}.
{fsummary, " Insert one or more objects into a Dets table. "}.
{name, "is_compatible_bchunk_format/2"}.
{fsummary, " Test compatibility of a table's chunk data. "}.
{name, "is_dets_file/1"}.
{fsummary, " Test for a Dets table. "}.
{name, "lookup/2"}.
{fsummary, " Return all objects with a given key stored in a Dets table. "}.
{name, "match/1"}.
{fsummary, " Match a chunk of objects stored in a Dets table and return a list of variable bindings. "}.
{name, "match/2"}.
{fsummary, " Match the objects stored in a Dets table and return a list of variable bindings. "}.
{name, "match/3"}.
{fsummary, " Match the first chunk of objects stored in a Dets table and return a list of variable bindings. "}.
{name, "match_delete/2"}.
{fsummary, " Delete all objects that match a given pattern from a Dets table. "}.
{name, "match_object/1"}.
{fsummary, " Match a chunk of objects stored in a Dets table and return a list of objects. "}.
{name, "match_object/2"}.
{fsummary, " Match the objects stored in a Dets table and return a list of objects. "}.
{name, "match_object/3"}.
{fsummary, " Match the first chunk of objects stored in a Dets table and return a list of objects. "}.
{name, "member/2"}.
{fsummary, " Test for occurrence of a key in a Dets table. "}.
{name, "next/2"}.
{fsummary, " Return the next key in a Dets table. "}.
{name, "open_file/1"}.
{fsummary, " Open an existing Dets table. "}.
{name, "open_file/2"}.
{fsummary, " Open a Dets table. "}.
{name, "pid2name/1"}.
{fsummary, " Return the name of the Dets table handled by a pid. "}.
{name, "repair_continuation/2"}.
{fsummary, " Repair a continuation from select/1 or select/3. "}.
{name, "safe_fixtable/2"}.
{fsummary, " Fix a Dets table for safe traversal. "}.
{name, "select/1"}.
{fsummary, " Apply a match specification to some objects stored in a Dets table. "}.
{name, "select/2"}.
{fsummary, " Apply a match specification to all objects stored in a Dets table. "}.
{name, "select/3"}.
{fsummary, " Apply a match specification to the first chunk of objects stored in a Dets table. "}.
{name, "select_delete/2"}.
{fsummary, " Delete all objects that match a given pattern from a Dets table. "}.
{name, "slot/2"}.
{fsummary, " Return the list of objects associated with a slot of a Dets table. "}.
{name, "sync/1"}.
{fsummary, " Ensure that all updates made to a Dets table are written to disk. "}.
{name, "table/2"}.
{fsummary, " Return a QLC query handle. "}.
{name, "to_ets/2"}.
{fsummary, " Insert all objects of a Dets table into an Ets table. "}.
{name, "traverse/2"}.
{fsummary, " Apply a function to all or some objects stored in a Dets table. "}.
{name, "update_counter/3"}.
{fsummary, " Update a counter object stored in a Dets table. "}.
{module, "dict"}.
{modulesummary, "Key-Value Dictionary"}.
{name, "append/3"}.
{fsummary, "Append a value to keys in a dictionary"}.
{name, "append_list/3"}.
{fsummary, "Append new values to keys in a dictionary"}.
{name, "erase/2"}.
{fsummary, "Erase a key from a dictionary"}.
{name, "fetch/2"}.
{fsummary, "Look-up values in a dictionary"}.
{name, "fetch_keys/1"}.
{fsummary, "Return all keys in a dictionary"}.
{name, "filter/2"}.
{fsummary, "Choose elements which satisfy a predicate"}.
{name, "find/2"}.
{fsummary, "Search for a key in a dictionary"}.
{name, "fold/3"}.
{fsummary, "Fold a function over a dictionary"}.
{name, "from_list/1"}.
{fsummary, "Convert a list of pairs to a dictionary"}.
{name, "is_key/2"}.
{fsummary, "Test if a key is in a dictionary"}.
{name, "map/2"}.
{fsummary, "Map a function over a dictionary"}.
{name, "merge/3"}.
{fsummary, "Merge two dictionaries"}.
{name, "new/0"}.
{fsummary, "Create a dictionary"}.
{name, "store/3"}.
{fsummary, "Store a value in a dictionary"}.
{name, "to_list/1"}.
{fsummary, "Convert a dictionary to a list of pairs"}.
{name, "update/3"}.
{fsummary, "Update a value in a dictionary"}.
{name, "update/4"}.
{fsummary, "Update a value in a dictionary"}.
{name, "update_counter/3"}.
{fsummary, "Increment a value in a dictionary"}.
{module, "digraph"}.
{modulesummary, "Directed Graphs"}.
{name, "add_edge/5"}.
{name, "add_edge/4"}.
{name, "add_edge/3"}.
{fsummary, "Add an edge to a digraph."}.
{name, "add_vertex/3"}.
{name, "add_vertex/2"}.
{name, "add_vertex/1"}.
{fsummary, "Add or modify a vertex of a digraph."}.
{name, "del_edge/2"}.
{fsummary, "Delete an edge from a digraph."}.
{name, "del_edges/2"}.
{fsummary, "Delete edges from a digraph."}.
{name, "del_path/3"}.
{fsummary, "Delete paths from a digraph."}.
{name, "del_vertex/2"}.
{fsummary, "Delete a vertex from a digraph."}.
{name, "del_vertices/2"}.
{fsummary, "Delete vertices from a digraph."}.
{name, "delete/1"}.
{fsummary, "Delete a digraph."}.
{name, "edge/2"}.
{fsummary, "Return the vertices and the label of an edge of a digraph."}.
{name, "edges/1"}.
{fsummary, "Return all edges of a digraph."}.
{name, "edges/2"}.
{fsummary, "Return the edges emanating from or incident on a vertex of a digraph."}.
{name, "get_cycle/2"}.
{fsummary, "Find one cycle in a digraph."}.
{name, "get_path/3"}.
{fsummary, "Find one path in a digraph."}.
{name, "get_short_cycle/2"}.
{fsummary, "Find one short cycle in a digraph."}.
{name, "get_short_path/3"}.
{fsummary, "Find one short path in a digraph."}.
{name, "in_degree/2"}.
{fsummary, "Return the in-degree of a vertex of a digraph."}.
{name, "in_edges/2"}.
{fsummary, "Return all edges incident on a vertex of a digraph."}.
{name, "in_neighbours/2"}.
{fsummary, "Return all in-neighbours of a vertex of a digraph."}.
{name, "info/1"}.
{fsummary, "Return information about a digraph."}.
{name, "new/0"}.
{fsummary, "Return a protected empty digraph, where cycles are allowed."}.
{name, "new/1"}.
{fsummary, "Create a new empty digraph."}.
{name, "no_edges/1"}.
{fsummary, "Return the number of edges of the a digraph."}.
{name, "no_vertices/1"}.
{fsummary, "Return the number of vertices of a digraph."}.
{name, "out_degree/2"}.
{fsummary, "Return the out-degree of a vertex of a digraph."}.
{name, "out_edges/2"}.
{fsummary, "Return all edges emanating from a vertex of a digraph."}.
{name, "out_neighbours/2"}.
{fsummary, "Return all out-neighbours of a vertex of a digraph."}.
{name, "vertex/2"}.
{fsummary, "Return the label of a vertex of a digraph."}.
{name, "vertices/1"}.
{fsummary, "Return all vertices of a digraph."}.
{module, "digraph_utils"}.
{modulesummary, "Algorithms for Directed Graphs"}.
{name, "components/1"}.
{fsummary, "Return the components of a digraph."}.
{name, "condensation/1"}.
{fsummary, "Return a condensed graph of a digraph."}.
{name, "cyclic_strong_components/1"}.
{fsummary, "Return the cyclic strong components of a digraph."}.
{name, "is_acyclic/1"}.
{fsummary, "Check if a digraph is acyclic."}.
{name, "loop_vertices/1"}.
{fsummary, "Return the vertices of a digraph included in some loop."}.
{name, "postorder/1"}.
{fsummary, "Return the vertices of a digraph in post-order."}.
{name, "preorder/1"}.
{fsummary, "Return the vertices of a digraph in pre-order."}.
{name, "reachable/2"}.
{fsummary, "Return the vertices reachable from some vertices of a digraph."}.
{name, "reachable_neighbours/2"}.
{fsummary, "Return the neighbours reachable from some vertices of a digraph."}.
{name, "reaching/2"}.
{fsummary, "Return the vertices that reach some vertices of a digraph."}.
{name, "reaching_neighbours/2"}.
{fsummary, "Return the neighbours that reach some vertices of a digraph."}.
{name, "strong_components/1"}.
{fsummary, "Return the strong components of a digraph."}.
{name, "subgraph/3"}.
{fsummary, "Return a subgraph of a digraph."}.
{name, "topsort/1"}.
{fsummary, "Return a topological sorting of the vertices of a digraph."}.
{module, "epp"}.
{modulesummary, "An Erlang Code Preprocessor"}.
{name, "open/2"}.
{name, "open/3"}.
{fsummary, "Open a file for preprocessing"}.
{name, "close/1"}.
{fsummary, "Close the preprocessing of the file associated with Epp"}.
{name, "parse_erl_form/1"}.
{fsummary, "Return the next Erlang form from the opened Erlang source file"}.
{name, "parse_file/3"}.
{fsummary, "Preprocesse and parse an Erlang source file"}.
{module, "erl_eval"}.
{modulesummary, "The Erlang Meta Interpreter"}.
{name, "exprs/2"}.
{name, "exprs/3"}.
{name, "exprs/4"}.
{fsummary, "Evaluate expressions"}.
{name, "expr/2"}.
{name, "expr/3"}.
{name, "expr/4"}.
{fsummary, "Evaluate expression"}.
{name, "expr_list/2"}.
{name, "expr_list/3"}.
{name, "expr_list/4"}.
{fsummary, "Evaluate a list of expressions"}.
{name, "new_bindings/0"}.
{fsummary, "Return a bindings structure"}.
{name, "bindings/1"}.
{fsummary, "Return bindings"}.
{name, "binding/2"}.
{fsummary, "Return bindings"}.
{name, "add_binding/3"}.
{fsummary, "Add a binding"}.
{name, "del_binding/2"}.
{fsummary, "Delete a binding"}.
{module, "erl_expand_records"}.
{modulesummary, "Expands Records in a Module"}.
{name, "module/2"}.
{fsummary, "Expand all records in a module"}.
{module, "erl_id_trans"}.
{modulesummary, "An Identity Parse Transform"}.
{name, "parse_transform/2"}.
{fsummary, "Transform Erlang forms"}.
{module, "erl_internal"}.
{modulesummary, "Internal Erlang Definitions"}.
{name, "bif/2"}.
{fsummary, "Test for an Erlang BIF"}.
{name, "guard_bif/2"}.
{fsummary, "Test for an Erlang BIF allowed in guards"}.
{name, "type_test/2"}.
{fsummary, "Test for a valid type test"}.
{name, "arith_op/2"}.
{fsummary, "Test for an arithmetic operator"}.
{name, "bool_op/2"}.
{fsummary, "Test for a Boolean operator"}.
{name, "comp_op/2"}.
{fsummary, "Test for a comparison operator"}.
{name, "list_op/2"}.
{fsummary, "Test for a list operator"}.
{name, "send_op/2"}.
{fsummary, "Test for a send operator"}.
{name, "op_type/2"}.
{fsummary, "Return operator type"}.
{module, "erl_lint"}.
{modulesummary, "The Erlang Code Linter"}.
{name, "module/1"}.
{name, "module/2"}.
{name, "module/3"}.
{fsummary, "Check a module for errors"}.
{name, "is_guard_test/1"}.
{fsummary, "Test for a guard test"}.
{name, "format_error/1"}.
{fsummary, "Format an error descriptor"}.
{module, "erl_parse"}.
{modulesummary, "The Erlang Parser"}.
{name, "parse_form/1"}.
{fsummary, "Parse an Erlang form"}.
{name, "parse_exprs/1"}.
{fsummary, "Parse Erlang expressions"}.
{name, "parse_term/1"}.
{fsummary, "Parse an Erlang term"}.
{name, "format_error/1"}.
{fsummary, "Format an error descriptor"}.
{name, "tokens/1"}.
{name, "tokens/2"}.
{fsummary, "Generate a list of tokens for an expression"}.
{name, "normalise/1"}.
{fsummary, "Convert abstract form to an Erlang term"}.
{name, "abstract/1"}.
{fsummary, "Convert an Erlang term into an abstract form"}.
{module, "erl_pp"}.
{modulesummary, "The Erlang Pretty Printer"}.
{name, "form/1"}.
{name, "form/2"}.
{fsummary, "Pretty print a form"}.
{name, "attribute/1"}.
{name, "attribute/2"}.
{fsummary, "Pretty print an attribute"}.
{name, "function/1"}.
{name, "function/2"}.
{fsummary, "Pretty print a function"}.
{name, "guard/1"}.
{name, "guard/2"}.
{fsummary, "Pretty print a guard"}.
{name, "exprs/1"}.
{name, "exprs/2"}.
{name, "exprs/3"}.
{fsummary, "Pretty print Expressions"}.
{name, "expr/1"}.
{name, "expr/2"}.
{name, "expr/3"}.
{name, "expr/4"}.
{fsummary, "Pretty print one Expression"}.
{module, "erl_scan"}.
{modulesummary, "The Erlang Token Scanner"}.
{name, "string/2"}.
{name, "string/1"}.
{fsummary, "Scan a string and returns the Erlang tokens"}.
{name, "tokens/3"}.
{fsummary, "Re-entrant scanner"}.
{name, "reserved_word/1"}.
{fsummary, "Test for a reserved word"}.
{name, "format_error/1"}.
{fsummary, "Format an error descriptor"}.
{module, "erl_tar"}.
{modulesummary, "Unix 'tar' utility for reading and writing tar archives"}.
{name, "add/3"}.
{fsummary, "Add a file to an open tar file"}.
{name, "add/4"}.
{fsummary, "Add a file to an open tar file"}.
{name, "close/1"}.
{fsummary, "Close an open tar file"}.
{name, "create/2"}.
{fsummary, "Create a tar archive"}.
{name, "create/3"}.
{fsummary, "Create a tar archive with options"}.
{name, "extract/1"}.
{fsummary, "Extract all files from a tar file"}.
{name, "extract/2"}.
{fsummary, "Extract files from a tar file"}.
{name, "format_error/1"}.
{fsummary, "Convert error term to a readable string"}.
{name, "open/2"}.
{fsummary, "Open a tar file."}.
{name, "table/1"}.
{fsummary, "Retrieve the name of all files in a tar file"}.
{name, "table/2"}.
{fsummary, "Retrieve name and information of all files in a tar file"}.
{name, "t/1"}.
{fsummary, "Print the name of each file in a tar file"}.
{name, "tt/1"}.
{fsummary, "Print name and information for each file in a tar file"}.
{module, "ets"}.
{modulesummary, "Built-In Term Storage"}.
{name, "all/0"}.
{fsummary, "Return a list of all ETS tables."}.
{name, "delete/1"}.
{fsummary, "Delete an entire ETS table."}.
{name, "delete/2"}.
{fsummary, "Delete all objects with a given key from an ETS table. "}.
{name, "delete_all_objects/1"}.
{fsummary, "Delete all objects in an ETS table."}.
{name, "delete_object/2"}.
{fsummary, "Deletes a specific from an ETS table."}.
{name, "file2tab/1"}.
{fsummary, "Read an ETS table from a file."}.
{name, "first/1"}.
{fsummary, "Return the first key in an ETS table."}.
{name, "fixtable/2"}.
{fsummary, "Fix an ETS table for safe traversal (obsolete). "}.
{name, "foldl/3"}.
{fsummary, "Fold a function over an ETS table"}.
{name, "foldr/3"}.
{fsummary, "Fold a function over an ETS table"}.
{name, "from_dets/2"}.
{fsummary, "Fill an ETS table with objects from a Dets table. "}.
{name, "fun2ms/1"}.
{fsummary, "Pseudo function that transforms fun syntax to a match_spec. "}.
{name, "i/0"}.
{fsummary, "Display information about all ETS tables on tty. "}.
{name, "i/1"}.
{fsummary, "Browse an ETS table on tty."}.
{name, "info/1"}.
{fsummary, "Return information about an ETS table."}.
{name, "info/2"}.
{fsummary, "Return the information associated with given item for an ETS table."}.
{name, "init_table/2"}.
{fsummary, " Replace all objects of an ETS table. "}.
{name, "insert/2"}.
{fsummary, "Insert an object into an ETS table."}.
{name, "insert_new/2"}.
{fsummary, "Insert an object into an ETS table if the key is not already present."}.
{name, "is_compiled_ms/1"}.
{fsummary, "Checks if an Erlang term is the result of ets:match_spec_compile"}.
{name, "last/1"}.
{fsummary, "Return the last key in an ETS table of type ordered_set."}.
{name, "lookup/2"}.
{fsummary, "Return all objects with a given key in an ETS table. "}.
{name, "lookup_element/3"}.
{fsummary, "Return the Pos:th element of all objects with a given key in an ETS table."}.
{name, "match/2"}.
{fsummary, "Match the objects in an ETS table against a pattern. "}.
{name, "match/3"}.
{fsummary, "Match the objects in an ETS table against a pattern and returns part of the answers."}.
{name, "match/1"}.
{fsummary, "Continues matching objects in an ETS table."}.
{name, "match_delete/2"}.
{fsummary, "Delete all objects which match a given pattern from an ETS table."}.
{name, "match_object/2"}.
{fsummary, "Match the objects in an ETS table against a pattern. "}.
{name, "match_object/3"}.
{fsummary, "Match the objects in an ETS table against a pattern and returns part of the answers."}.
{name, "match_object/1"}.
{fsummary, "Continues matching objects in an ETS table."}.
{name, "match_spec_compile/1"}.
{fsummary, "Compiles a match specification into its internal representation"}.
{name, "match_spec_run/2"}.
{fsummary, "Performs matching, using a compiled match_spec, on a list of tuples"}.
{name, "member/2"}.
{fsummary, "Tests for occurrence of a key in an ETS table"}.
{name, "new/2"}.
{fsummary, "Create a new ETS table."}.
{name, "next/2"}.
{fsummary, "Return the next key in an ETS table."}.
{name, "prev/2"}.
{fsummary, "Return the previous key in an ETS table of type ordered_set."}.
{name, "rename/2"}.
{fsummary, "Rename a named ETS table."}.
{name, "repair_continuation/2"}.
{fsummary, "Repair a continuation from ets:select/1 or ets:select/3 that has passed through external representation "}.
{name, "safe_fixtable/2"}.
{fsummary, "Fix an ETS table for safe traversal."}.
{name, "select/2"}.
{fsummary, "Match the objects in an ETS table against a match_spec. "}.
{name, "select/3"}.
{fsummary, "Match the objects in an ETS table against a match_spec and returns part of the answers."}.
{name, "select/1"}.
{fsummary, "Continue matching objects in an ETS table."}.
{name, "select_delete/2"}.
{fsummary, " Match the objects in an ETS table against a match_spec and deletes objects where the match_spec returns 'true' "}.
{name, "select_count/2"}.
{fsummary, " Match the objects in an ETS table against a match_spec and returns the number of objects for which the match_spec returned 'true' "}.
{name, "slot/2"}.
{fsummary, "Return all objects in a given slot of an ETS table. "}.
{name, "tab2file/2"}.
{fsummary, "Dump an ETS table to a file."}.
{name, "tab2list/1"}.
{fsummary, "Return a list of all objects in an ETS table."}.
{name, "table/2"}.
{fsummary, "Return a QLC query handle."}.
{name, "test_ms/2"}.
{fsummary, "Test a match_spec for use in ets:select/2."}.
{name, "to_dets/2"}.
{fsummary, "Fill a Dets table with objects from an ETS table. "}.
{name, "update_counter/6"}.
{name, "update_counter/4"}.
{name, "update_counter/3"}.
{fsummary, "Update a counter object in an ETS table."}.
{module, "file_sorter"}.
{modulesummary, "File Sorter"}.
{name, "sort/1"}.
{name, "sort/2"}.
{name, "sort/3"}.
{fsummary, "Sort terms on files."}.
{name, "keysort/2"}.
{name, "keysort/3"}.
{name, "keysort/4"}.
{fsummary, "Sort terms on files by key."}.
{name, "merge/2"}.
{name, "merge/3"}.
{fsummary, "Merge terms on files."}.
{name, "keymerge/3"}.
{name, "keymerge/4"}.
{fsummary, "Merge terms on files by key."}.
{name, "check/1"}.
{name, "check/2"}.
{fsummary, "Check whether terms on files are sorted."}.
{name, "keycheck/2"}.
{name, "keycheck/3"}.
{fsummary, "Check whether terms on files are sorted by key."}.
{module, "filelib"}.
{modulesummary, "File utilities, such as wildcard matching of filenames"}.
{name, "ensure_dir/1"}.
{fsummary, "Ensure that all parent directories for a file or directory exist."}.
{name, "file_size/1"}.
{fsummary, "Return the size in bytes of the file."}.
{name, "fold_files/5"}.
{fsummary, "Fold over all files matching a regular expression."}.
{name, "is_dir/1"}.
{fsummary, "Test whether Name refer to a directory or not"}.
{name, "is_file/1"}.
{fsummary, "Test whether Name refer to a file or directory."}.
{name, "is_regular/1"}.
{fsummary, "Test whether Name refer to a (regular) file."}.
{name, "last_modified/1"}.
{fsummary, "Return the local date and time when a file was last modified."}.
{name, "wildcard/1"}.
{fsummary, "Match filenames using Unix-style wildcards."}.
{name, "wildcard/2"}.
{fsummary, "Match filenames using Unix-style wildcards startin at a specified directory."}.
{module, "filename"}.
{modulesummary, "Filename Manipulation Functions"}.
{name, "absname/1"}.
{fsummary, "Convert a filename to an absolute name, relative the working directory"}.
{name, "absname/2"}.
{fsummary, "Convert a filename to an absolute name, relative a specified directory"}.
{name, "absname_join/2"}.
{fsummary, "Join an absolute directory with a relative filename "}.
{name, "basename/1"}.
{fsummary, "Return the last component of a filename"}.
{name, "basename/2"}.
{fsummary, "Return the last component of a filename, stripped of the specified extension"}.
{name, "dirname/1"}.
{fsummary, "Return the directory part of a path name"}.
{name, "extension/1"}.
{fsummary, "Return the file extension"}.
{name, "flatten/1"}.
{fsummary, "Convert a filename to a flat string"}.
{name, "join/1"}.
{fsummary, "Join a list of filename components with directory separators"}.
{name, "join/2"}.
{fsummary, "Join two filename components with directory separators "}.
{name, "nativename/1"}.
{fsummary, "Return the native form of a file path"}.
{name, "pathtype/1"}.
{fsummary, "Return the type of a path"}.
{name, "rootname/1"}.
{name, "rootname/2"}.
{fsummary, "Remove a filename extension"}.
{name, "split/1"}.
{fsummary, "Split a filename into its path components"}.
{name, "find_src/1"}.
{name, "find_src/2"}.
{fsummary, "Find the filename and compiler options for a module "}.
{module, "gb_sets"}.
{modulesummary, "General Balanced Trees"}.
{name, "add/2"}.
{name, "add_element/2"}.
{fsummary, "Add a (possibly existing) element to a gb_set "}.
{name, "balance/1"}.
{fsummary, "Rebalance tree representation of a gb_set"}.
{name, "delete/2"}.
{fsummary, "Remove an element from a gb_set"}.
{name, "delete_any/2"}.
{name, "del_element/2"}.
{fsummary, "Remove a (possibly non-existing) element from a gb_set "}.
{name, "difference/2"}.
{name, "subtract/2"}.
{fsummary, "Return the difference of two gb_sets"}.
{name, "empty/0"}.
{name, "new/0"}.
{fsummary, "Return an empty gb_set"}.
{name, "filter/2"}.
{fsummary, "Filter gb_set elements"}.
{name, "fold/3"}.
{fsummary, "Fold over gb_set elements"}.
{name, "from_list/1"}.
{fsummary, "Convert a list into a gb_set"}.
{name, "from_ordset/1"}.
{fsummary, "Make a gb_set from an ordset list"}.
{name, "insert/2"}.
{fsummary, "Add a new element to a gb_set"}.
{name, "intersection/2"}.
{fsummary, "Return the intersection of two gb_sets"}.
{name, "intersection/1"}.
{fsummary, "Return the intersection of a list of gb_sets"}.
{name, "is_empty/1"}.
{fsummary, "Test for empty gb_set"}.
{name, "is_member/2"}.
{name, "is_element/2"}.
{fsummary, "Test for membership of a gb_set"}.
{name, "is_set/1"}.
{fsummary, "Test for a gb_set"}.
{name, "is_subset/2"}.
{fsummary, "Test for subset"}.
{name, "iterator/1"}.
{fsummary, "Return an iterator for a gb_set"}.
{name, "largest/1"}.
{fsummary, "Return largest element"}.
{name, "next/1"}.
{fsummary, "Traverse a gb_set with an iterator"}.
{name, "singleton/1"}.
{fsummary, "Return a gb_set with one element"}.
{name, "size/1"}.
{fsummary, "Return the number of elements in a gb_set"}.
{name, "smallest/1"}.
{fsummary, "Return smallest element"}.
{name, "take_largest/1"}.
{fsummary, "Extract largest element"}.
{name, "take_smallest/1"}.
{fsummary, "Extract smallest element"}.
{name, "to_list/1"}.
{fsummary, "Convert a gb_set into a list"}.
{name, "union/2"}.
{fsummary, "Return the union of two gb_sets"}.
{name, "union/1"}.
{fsummary, "Return the union of a list of gb_sets"}.
{module, "gb_trees"}.
{modulesummary, "General Balanced Trees"}.
{name, "balance/1"}.
{fsummary, "Rebalance a tree"}.
{name, "delete/2"}.
{fsummary, "Remove a node from a tree"}.
{name, "delete_any/2"}.
{fsummary, "Remove a (possibly non-existing) node from a tree "}.
{name, "empty/0"}.
{fsummary, "Return an empty tree"}.
{name, "enter/3"}.
{fsummary, "Insert or update key with value in a tree"}.
{name, "from_orddict/1"}.
{fsummary, "Make a tree from an orddict"}.
{name, "get/2"}.
{fsummary, "Look up a key in a tree, if present"}.
{name, "lookup/2"}.
{fsummary, "Look up a key in a tree"}.
{name, "insert/3"}.
{fsummary, "Insert a new key and value in a tree"}.
{name, "is_defined/2"}.
{fsummary, "Test for membership of a tree"}.
{name, "is_empty/1"}.
{fsummary, "Test for empty tree"}.
{name, "iterator/1"}.
{fsummary, "Return an iterator for a tree"}.
{name, "keys/1"}.
{fsummary, "Return a list of the keys in a tree"}.
{name, "largest/1"}.
{fsummary, "Return largest key and value"}.
{name, "next/1"}.
{fsummary, "Traverse a tree with an iterator"}.
{name, "size/1"}.
{fsummary, "Return the number of nodes in a tree"}.
{name, "smallest/1"}.
{fsummary, "Return smallest key and value"}.
{name, "take_largest/1"}.
{fsummary, "Extract largest key and value"}.
{name, "take_smallest/1"}.
{fsummary, "Extract smallest key and value"}.
{name, "to_list/1"}.
{fsummary, "Convert a tree into a list"}.
{name, "update/3"}.
{fsummary, "Update a key to new value in a tree"}.
{name, "values/1"}.
{fsummary, "Return a list of the values in a tree"}.
{module, "gen_event"}.
{modulesummary, "Generic Event Handling Behaviour"}.
{name, "start_link/0"}.
{name, "start_link/1"}.
{fsummary, "Create a generic event manager process in a supervision tree."}.
{name, "start/0"}.
{name, "start/1"}.
{fsummary, "Create a stand-alone event manager process."}.
{name, "add_handler/3"}.
{fsummary, "Add an event handler to a generic event manager."}.
{name, "add_sup_handler/3"}.
{fsummary, "Add a supervised event handler to a generic event manager. "}.
{name, "notify/2"}.
{name, "sync_notify/2"}.
{fsummary, "Notify an event manager about an event."}.
{name, "call/3"}.
{name, "call/4"}.
{fsummary, "Make a synchronous call to a generic event manager. "}.
{name, "delete_handler/3"}.
{fsummary, "Delete an event handler from a generic event manager. "}.
{name, "swap_handler/5"}.
{fsummary, "Replace an event handler in a generic event manager. "}.
{name, "swap_sup_handler/5"}.
{fsummary, "Replace an event handler in a generic event manager. "}.
{name, "which_handlers/1"}.
{fsummary, "Return all event handlers installed in a generic event manager."}.
{name, "stop/1"}.
{fsummary, "Terminate a generic event manager."}.
{name, "Module:init/1"}.
{fsummary, "Initialize an event handler."}.
{name, "Module:handle_event/2"}.
{fsummary, "Handle an event."}.
{name, "Module:handle_call/2"}.
{fsummary, "Handle a synchronous request."}.
{name, "Module:handle_info/2"}.
{fsummary, "Handle an incoming message."}.
{name, "Module:terminate/2"}.
{fsummary, "Clean up before deletion."}.
{name, "Module:code_change/3"}.
{fsummary, "Update the internal state during upgrade/downgrade."}.
{module, "gen_fsm"}.
{modulesummary, "Generic Finite State Machine Behaviour"}.
{name, "start_link/3"}.
{name, "start_link/4"}.
{fsummary, "Create a gen_fsm process in a supervision tree. "}.
{name, "start/3"}.
{name, "start/4"}.
{fsummary, "Create a stand-alone gen_fsm process."}.
{name, "send_event/2"}.
{fsummary, "Send an event asynchronously to a generic FSM."}.
{name, "send_all_state_event/2"}.
{fsummary, "Send an event asynchronously to a generic FSM."}.
{name, "sync_send_event/2"}.
{name, "sync_send_event/3"}.
{fsummary, "Send an event synchronously to a generic FSM."}.
{name, "sync_send_all_state_event/2"}.
{name, "sync_send_all_state_event/3"}.
{fsummary, "Send an event syncronously to a generic FSM."}.
{name, "reply/2"}.
{fsummary, "Send a reply to a caller."}.
{name, "send_event_after/2"}.
{fsummary, "Send a delayed event internally in a generic FSM."}.
{name, "start_timer/2"}.
{fsummary, "Send a timeout event internally in a generic FSM."}.
{name, "cancel_timer/1"}.
{fsummary, "Cancel an internal timer in a generic FSM."}.
{name, "enter_loop/4"}.
{name, "enter_loop/5"}.
{name, "enter_loop/5"}.
{name, "enter_loop/6"}.
{fsummary, "Enter the gen_fsm receive loop"}.
{name, "Module:init/1"}.
{fsummary, "Initialize process and internal state name and state data. "}.
{name, "Module:StateName/2"}.
{fsummary, "Handle an asynchronous event."}.
{name, "Module:handle_event/3"}.
{fsummary, "Handle an asynchronous event."}.
{name, "Module:StateName/3"}.
{fsummary, "Handle a synchronous event."}.
{name, "Module:handle_sync_event/4"}.
{fsummary, "Handle a synchronous event."}.
{name, "Module:handle_info/3"}.
{fsummary, "Handle an incoming message."}.
{name, "Module:terminate/3"}.
{fsummary, "Clean up before termination."}.
{name, "Module:code_change/4"}.
{fsummary, "Update the internal state data during upgrade/downgrade."}.
{module, "gen_server"}.
{modulesummary, "Generic Server Behaviour"}.
{name, "start_link/3"}.
{name, "start_link/4"}.
{fsummary, "Create a gen_server process in a supervision tree. "}.
{name, "start/3"}.
{name, "start/4"}.
{fsummary, "Create a stand-alone gen_server process."}.
{name, "call/2"}.
{name, "call/3"}.
{fsummary, "Make a synchronous call to a generic server."}.
{name, "multi_call/2"}.
{name, "multi_call/3"}.
{name, "multi_call/4"}.
{fsummary, "Make a synchronous call to several generic servers. "}.
{name, "cast/2"}.
{fsummary, "Send an asynchronous request to a generic server."}.
{name, "abcast/2"}.
{name, "abcast/3"}.
{fsummary, "Send an asynchronous request to several generic servers. "}.
{name, "reply/2"}.
{fsummary, "Send a reply to a client."}.
{name, "enter_loop/3"}.
{name, "enter_loop/4"}.
{name, "enter_loop/4"}.
{name, "enter_loop/5"}.
{fsummary, "Enter the gen_server receive loop"}.
{name, "Module:init/1"}.
{fsummary, "Initialize process and internal state."}.
{name, "Module:handle_call/3"}.
{fsummary, "Handle a synchronous request."}.
{name, "Module:handle_cast/2"}.
{fsummary, "Handle an asynchronous request."}.
{name, "Module:handle_info/2"}.
{fsummary, "Handle an incoming message."}.
{name, "Module:terminate/2"}.
{fsummary, "Clean up before termination."}.
{name, "Module:code_change/3"}.
{fsummary, "Update the internal state during upgrade/downgrade."}.
{module, "io"}.
{modulesummary, "Standard IO Server Interface Functions"}.
{name, "put_chars/2"}.
{fsummary, "Write a list of characters"}.
{name, "nl/1"}.
{fsummary, "Write a newline"}.
{name, "get_chars/3"}.
{fsummary, "Read a specified number of characters"}.
{name, "get_line/2"}.
{fsummary, "Read a line"}.
{name, "setopts/2"}.
{fsummary, "Set options"}.
{name, "write/2"}.
{fsummary, "Write a term"}.
{name, "read/2"}.
{fsummary, "Read a term"}.
{name, "read/3"}.
{fsummary, "Read a term"}.
{name, "fwrite/1"}.
{name, "fwrite/3"}.
{name, "format/1"}.
{name, "format/3"}.
{fsummary, "Write formatted output"}.
{name, "fread/3"}.
{fsummary, "Read formatted input"}.
{name, "scan_erl_exprs/1"}.
{name, "scan_erl_exprs/3"}.
{fsummary, "Read and tokenize Erlang expressions"}.
{name, "scan_erl_form/1"}.
{name, "scan_erl_form/3"}.
{fsummary, "Read and tokenize an Erlang form"}.
{name, "parse_erl_exprs/1"}.
{name, "parse_erl_exprs/3"}.
{fsummary, "Read, tokenize and parse Erlang expressions"}.
{name, "parse_erl_form/1"}.
{name, "parse_erl_form/3"}.
{fsummary, "Read, tokenize and parse an Erlang form"}.
{module, "io_lib"}.
{modulesummary, "IO Library Functions"}.
{name, "nl/0"}.
{fsummary, "Write a newline"}.
{name, "write/1"}.
{name, "write/2"}.
{fsummary, "Write a term"}.
{name, "print/1"}.
{name, "print/4"}.
{fsummary, "Pretty print a term"}.
{name, "fwrite/2"}.
{name, "format/2"}.
{fsummary, "Write formatted output"}.
{name, "fread/2"}.
{fsummary, "Read formatted input"}.
{name, "fread/3"}.
{fsummary, "Re-entrant formatted reader"}.
{name, "write_atom/1"}.
{fsummary, "Write an atom"}.
{name, "write_string/1"}.
{fsummary, "Write a string"}.
{name, "write_char/1"}.
{fsummary, "Write a character"}.
{name, "indentation/2"}.
{fsummary, "Indentation after printing string"}.
{name, "char_list/1"}.
{fsummary, "Test for a list of characters"}.
{name, "deep_char_list/1"}.
{fsummary, "Test for a deep list of characters"}.
{name, "printable_list/1"}.
{fsummary, "Test for a list of printable characters"}.
{module, "lib"}.
{modulesummary, "A number of useful library functions"}.
{name, "flush_receive/0"}.
{fsummary, "Flush messages"}.
{name, "error_message/2"}.
{fsummary, "Print error message"}.
{name, "progname/0"}.
{fsummary, "Return name of Erlang start script"}.
{name, "nonl/1"}.
{fsummary, "Remove last newline"}.
{name, "send/2"}.
{fsummary, "Send a message"}.
{name, "sendw/2"}.
{fsummary, "Send a message and wait for an answer"}.
{module, "lists"}.
{modulesummary, "List Processing Functions"}.
{name, "append/1"}.
{fsummary, "Append a list of lists"}.
{name, "append/2"}.
{fsummary, "Append two lists"}.
{name, "concat/1"}.
{fsummary, "Concatenate a list of atoms"}.
{name, "delete/2"}.
{fsummary, "Delete an element from a list"}.
{name, "duplicate/2"}.
{fsummary, "Make N copies of element"}.
{name, "flatlength/1"}.
{fsummary, "Length of flattened deep list"}.
{name, "flatten/1"}.
{fsummary, "Flatten a deep list"}.
{name, "flatten/2"}.
{fsummary, "Flatten a deep list"}.
{name, "keydelete/3"}.
{fsummary, "Delete an element from a list of tuples"}.
{name, "keymember/3"}.
{fsummary, "Test for membership of a list of tuples"}.
{name, "keymerge/3"}.
{fsummary, "Merge two key-sorted lists of tuples"}.
{name, "keyreplace/4"}.
{fsummary, "Replace an element in a list of tuples"}.
{name, "keysearch/3"}.
{fsummary, "Search for an element in a list of tuples"}.
{name, "keysort/2"}.
{fsummary, "Sort a list of tuples"}.
{name, "last/1"}.
{fsummary, "Return last element in a list"}.
{name, "max/1"}.
{fsummary, "Return maximum element of list"}.
{name, "member/2"}.
{fsummary, "Test for membership of a list"}.
{name, "merge/1"}.
{fsummary, "Merge a list of sorted lists"}.
{name, "merge/2"}.
{fsummary, "Merge two sorted lists"}.
{name, "merge/3"}.
{fsummary, "Merge two sorted list"}.
{name, "merge3/3"}.
{fsummary, "Merge three sorted lists"}.
{name, "min/1"}.
{fsummary, "Return minimum element of list"}.
{name, "nth/2"}.
{fsummary, "Return the Nth element of a list"}.
{name, "nthtail/2"}.
{fsummary, "Return the Nth tail of a list"}.
{name, "prefix/2"}.
{fsummary, "Test for list prefix"}.
{name, "reverse/1"}.
{fsummary, "Reverse a list"}.
{name, "reverse/2"}.
{fsummary, "Reverse a list appending a tail"}.
{name, "seq/2"}.
{name, "seq/3"}.
{fsummary, "Generate a sequence of integers"}.
{name, "sort/1"}.
{fsummary, "Sort a list"}.
{name, "sort/2"}.
{fsummary, "Sort a list"}.
{name, "split/2"}.
{fsummary, "Split a list into two lists"}.
{name, "sublist/2"}.
{fsummary, "Return a sub-list of a certain length, starting at the first position"}.
{name, "sublist/3"}.
{fsummary, "Return a sub-list starting at a given position and with a given number of elements"}.
{name, "subtract/2"}.
{fsummary, "Subtract the element in one list from another list "}.
{name, "suffix/2"}.
{fsummary, "Test for list suffix"}.
{name, "sum/1"}.
{fsummary, "Return sum of elements in a list"}.
{name, "ukeymerge/3"}.
{fsummary, "Merge two key-sorted lists of tuples, removing duplicates"}.
{name, "ukeysort/2"}.
{fsummary, "Sort a list of tuples, removing duplicates"}.
{name, "umerge/1"}.
{fsummary, "Merge a list of sorted lists, removing duplicates "}.
{name, "umerge/2"}.
{fsummary, "Merge two sorted lists, removing duplicates"}.
{name, "umerge/3"}.
{fsummary, "Merge two sorted lists, removing duplicates"}.
{name, "umerge3/3"}.
{fsummary, "Merge three sorted lists, removing duplicates"}.
{name, "unzip/1"}.
{fsummary, "Unzip a list of two-tuples into two lists"}.
{name, "unzip3/1"}.
{fsummary, "Unzip a list of three-tuples into three lists"}.
{name, "usort/1"}.
{fsummary, "Sort a list, removing duplicates"}.
{name, "usort/2"}.
{fsummary, "Sort a list, removing duplicates"}.
{name, "zip/2"}.
{fsummary, "Zip two lists into a list of two-tuples"}.
{name, "zip3/3"}.
{fsummary, "Zip three lists into a list of three-tuples"}.
{name, "zipwith/3"}.
{fsummary, "Zip two lists into one list according to a fun "}.
{name, "zipwith3/4"}.
{fsummary, "Zip three lists into one list according to a fun "}.
{name, "all/2"}.
{fsummary, "Return true if all elements in the list satisfy Pred "}.
{name, "any/2"}.
{fsummary, "Return true if any of the elements in the list satisfies Pred"}.
{name, "dropwhile/2"}.
{fsummary, "Drop elements from a list while a predicate is true "}.
{name, "filter/2"}.
{fsummary, "Choose elements which satisfy a predicate"}.
{name, "flatmap/2"}.
{fsummary, "Map and flatten in one pass"}.
{name, "foldl/3"}.
{fsummary, "Fold a function over a list"}.
{name, "foldr/3"}.
{fsummary, "Fold a function over a list"}.
{name, "foreach/2"}.
{fsummary, "Apply a function to each element of a list"}.
{name, "keymap/3"}.
{fsummary, "Map a function over a list of tuples"}.
{name, "map/2"}.
{fsummary, "Map a function over a list"}.
{name, "mapfoldl/3"}.
{fsummary, "Map and fold in one pass"}.
{name, "mapfoldr/3"}.
{fsummary, "Map and fold in one pass"}.
{name, "partition/2"}.
{fsummary, "Partition a list into two lists based on a predicate "}.
{name, "splitwith/2"}.
{fsummary, "Split a list into two lists based on a predicate "}.
{name, "takewhile/2"}.
{fsummary, "Take elements from a list while a predicate is true "}.
{module, "log_mf_h"}.
{modulesummary, "An Event Handler which Logs Events to Disk"}.
{name, "init/3"}.
{name, "init/4"}.
{fsummary, "Initiate the event handler"}.
{module, "math"}.
{modulesummary, "Mathematical Functions"}.
{name, "pi/0"}.
{fsummary, "A useful number"}.
{name, "sin/1"}.
{name, "cos/1"}.
{name, "tan/1"}.
{name, "asin/1"}.
{name, "acos/1"}.
{name, "atan/1"}.
{name, "atan2/2"}.
{name, "sinh/1"}.
{name, "cosh/1"}.
{name, "tanh/1"}.
{name, "asinh/1"}.
{name, "acosh/1"}.
{name, "atanh/1"}.
{name, "exp/1"}.
{name, "log/1"}.
{name, "log10/1"}.
{name, "pow/2"}.
{name, "sqrt/1"}.
{fsummary, "Diverse math functions"}.
{name, "erf/1"}.
{fsummary, "Error function."}.
{name, "erfc/1"}.
{fsummary, "Another error function"}.
{module, "ms_transform"}.
{modulesummary, "Parse_transform that translates fun syntax into match specifications. "}.
{name, "parse_transform/2"}.
{fsummary, "Transforms Erlang abstract format containing calls to ets/dbg:fun2ms into literal match specifications."}.
{name, "transform_from_shell/3"}.
{fsummary, "Used when transforming fun's created in the shell into match_specifications."}.
{name, "format_error/1"}.
{fsummary, "Error formatting function as required by the parse_transform interface."}.
{module, "orddict"}.
{modulesummary, "Key-Value Dictionary as Ordered List"}.
{module, "ordsets"}.
{modulesummary, "Functions for Manipulating Sets as Ordered Lists "}.
{module, "pg"}.
{modulesummary, "Distributed, Named Process Groups"}.
{name, "create/1"}.
{fsummary, "Create an empty group"}.
{name, "create/2"}.
{fsummary, "Create an empty group on another node"}.
{name, "join/2"}.
{fsummary, "Join a pid to a process group"}.
{name, "send/2"}.
{fsummary, "Send a message to all members of a process group "}.
{name, "esend/2"}.
{fsummary, "Send a message to all members of a process group, except ourselves"}.
{name, "members/1"}.
{fsummary, "Return a list of all members of a process group "}.
{module, "pool"}.
{modulesummary, "Load Distribution Facility"}.
{name, "start/1"}.
{name, "start/2"}.
{fsummary, ">Start a new pool"}.
{name, "attach/1"}.
{fsummary, "Ensure that a pool master is running"}.
{name, "stop/0"}.
{fsummary, "Stop the pool and kill all the slave nodes"}.
{name, "get_nodes/0"}.
{fsummary, "Return a list of the current member nodes of the pool "}.
{name, "pspawn/3"}.
{fsummary, "Spawn a process on the pool node with expected lowest future load"}.
{name, "pspawn_link/3"}.
{fsummary, "Spawn and link to a process on the pool node with expected lowest future load"}.
{name, "get_node/0"}.
{fsummary, "Return the node with the expected lowest future load "}.
{module, "proc_lib"}.
{modulesummary, "Plug-in Replacements for spawn/1,2,3,4, spawn_link/1,2,3,4, and spawn_opt/2,3,4,5. "}.
{name, "spawn/1"}.
{name, "spawn/2"}.
{name, "spawn/3"}.
{name, "spawn/4"}.
{fsummary, "Spawn a new process."}.
{name, "spawn_link/1"}.
{name, "spawn_link/2"}.
{name, "spawn_link/3"}.
{name, "spawn_link/4"}.
{fsummary, "Spawn a new process and set a link."}.
{name, "spawn_opt/2"}.
{name, "spawn_opt/3"}.
{name, "spawn_opt/4"}.
{name, "spawn_opt/5"}.
{fsummary, "Spawn a new process with given options."}.
{name, "start/3"}.
{name, "start/4"}.
{name, "start/5"}.
{name, "start_link/3"}.
{name, "start_link/4"}.
{name, "start_link/5"}.
{fsummary, "Start a new process synchronously."}.
{name, "init_ack/2"}.
{name, "init_ack/1"}.
{fsummary, "Used by a process when it has started."}.
{name, "format/1"}.
{fsummary, "Format a crash report."}.
{name, "initial_call/1"}.
{fsummary, "Extract the initial call of a proc_lib spawned process. "}.
{name, "translate_initial_call/1"}.
{fsummary, "Extract and translate the initial call of a proc_lib spawned process. "}.
{name, "hibernate/3"}.
{fsummary, "Hibernate the current process until a message is sent to it "}.
{module, "proplists"}.
{modulesummary, "Support functions for property lists"}.
{name, "append_values/2"}.
{fsummary, ""}.
{name, "compact/1"}.
{fsummary, ""}.
{name, "delete/2"}.
{fsummary, ""}.
{name, "expand/2"}.
{fsummary, ""}.
{name, "get_all_values/2"}.
{fsummary, ""}.
{name, "get_bool/2"}.
{fsummary, ""}.
{name, "get_keys/1"}.
{fsummary, ""}.
{name, "get_value/2"}.
{fsummary, ""}.
{name, "get_value/3"}.
{fsummary, ""}.
{name, "is_defined/2"}.
{fsummary, ""}.
{name, "lookup/2"}.
{fsummary, ""}.
{name, "lookup_all/2"}.
{fsummary, ""}.
{name, "normalize/2"}.
{fsummary, ""}.
{name, "property/1"}.
{fsummary, ""}.
{name, "property/2"}.
{fsummary, ""}.
{name, "split/2"}.
{fsummary, ""}.
{name, "substitute_aliases/2"}.
{fsummary, ""}.
{name, "substitute_negations/2"}.
{fsummary, ""}.
{name, "unfold/1"}.
{fsummary, ""}.
{module, "qlc"}.
{modulesummary, "Query Interface to Mnesia, ETS, Dets, etc"}.
{name, "append/1"}.
{fsummary, "Return a query handle."}.
{name, "append/2"}.
{fsummary, "Return a query handle."}.
{name, "cursor/2"}.
{fsummary, "Create a query cursor."}.
{name, "delete_cursor/1"}.
{fsummary, "Delete a query cursor."}.
{name, "eval/2"}.
{name, "e/2"}.
{fsummary, "Return all answers to a query."}.
{name, "fold/4"}.
{fsummary, "Fold a function over the answers to a query."}.
{name, "format_error/1"}.
{fsummary, "Return an English description of a an error tuple. "}.
{name, "info/2"}.
{fsummary, "Return code describing a query handle."}.
{name, "keysort/3"}.
{fsummary, "Return a query handle."}.
{name, "next_answers/2"}.
{fsummary, "Return some or all answers to a query."}.
{name, "q/2"}.
{fsummary, "Return a handle for a query list comprehension."}.
{name, "sort/2"}.
{fsummary, "Return a query handle."}.
{name, "string_to_handle/3"}.
{fsummary, "Return a handle for a query list comprehension."}.
{name, "table/2"}.
{fsummary, "Return a query handle for a table."}.
{module, "queue"}.
{modulesummary, "Abstract Data Type for FIFO Queues"}.
{name, "cons/2"}.
{fsummary, "Insert an item at the head of a queue"}.
{name, "daeh/1"}.
{fsummary, "Return the last item of a queue"}.
{name, "from_list/1"}.
{fsummary, "Convert a list to a queue"}.
{name, "head/1"}.
{fsummary, "Return the item at the head of a queue"}.
{name, "in/2"}.
{fsummary, "Insert an item at the tail of a queue"}.
{name, "in_r/2"}.
{fsummary, "Insert an item at the head of a queue"}.
{name, "init/1"}.
{fsummary, "Remove the last item from a queue"}.
{name, "is_empty/1"}.
{fsummary, "Test if a queue is empty"}.
{name, "join/2"}.
{fsummary, "Join two queues"}.
{name, "lait/1"}.
{fsummary, "Remove the last item from a queue"}.
{name, "last/1"}.
{fsummary, "Return the last item of a queue"}.
{name, "len/1"}.
{fsummary, "Get the length of a queue"}.
{name, "new/0"}.
{fsummary, "Create a new empty FIFO queue"}.
{name, "out/1"}.
{fsummary, "Remove the head item from a queue"}.
{name, "out_r/1"}.
{fsummary, "Remove the last item from a queue"}.
{name, "reverse/1"}.
{fsummary, "Reverse a queue"}.
{name, "snoc/2"}.
{fsummary, "Insert an item at the end of a queue"}.
{name, "split/2"}.
{fsummary, "Split a queue in two"}.
{name, "tail/1"}.
{fsummary, "Remove the head item from a queue"}.
{name, "to_list/1"}.
{fsummary, "Convert a queue to a list"}.
{module, "random"}.
{modulesummary, "Pseudo random number generation"}.
{name, "seed/0"}.
{fsummary, "Seeds random number generation with default values"}.
{name, "seed/3"}.
{fsummary, "Seeds random number generator"}.
{name, "seed0/0"}.
{fsummary, "Return default state for random number generation"}.
{name, "uniform/0"}.
{fsummary, "Return a random float"}.
{name, "uniform/1"}.
{fsummary, "Return a random integer"}.
{name, "uniform_s/1"}.
{fsummary, "Return a random float"}.
{name, "uniform_s/2"}.
{fsummary, "Return a random integer"}.
{module, "regexp"}.
{modulesummary, "Regular Expression Functions for Strings "}.
{name, "match/2"}.
{fsummary, "Match a regular expression"}.
{name, "first_match/2"}.
{fsummary, "Match a regular expression"}.
{name, "matches/2"}.
{fsummary, "Match a regular expression"}.
{name, "sub/3"}.
{fsummary, "Substitute the first occurrence of a regular expression"}.
{name, "gsub/3"}.
{fsummary, "Substitute all occurrences of a regular expression"}.
{name, "split/2"}.
{fsummary, "Split a string into fields"}.
{name, "sh_to_awk/1"}.
{fsummary, "Convert an sh regular expression into an AWK one"}.
{name, "parse/1"}.
{fsummary, "Parse a regular expression"}.
{name, "format_error/1"}.
{fsummary, "Format an error descriptor"}.
{module, "sets"}.
{modulesummary, "Functions for Set Manipulation "}.
{name, "new/0"}.
{fsummary, "Return an empty set"}.
{name, "is_set/1"}.
{fsummary, "Test for an Set"}.
{name, "size/1"}.
{fsummary, "Return the number of elements in a set"}.
{name, "to_list/1"}.
{fsummary, "Convert an Set into a list"}.
{name, "from_list/1"}.
{fsummary, "Convert a list into an Set"}.
{name, "is_element/2"}.
{fsummary, "Test for membership of an Set"}.
{name, "add_element/2"}.
{fsummary, "Add an element to an Set"}.
{name, "del_element/2"}.
{fsummary, "Remove an element from an Set"}.
{name, "union/2"}.
{fsummary, "Return the union of two Sets"}.
{name, "union/1"}.
{fsummary, "Return the union of a list of Sets"}.
{name, "intersection/2"}.
{fsummary, "Return the intersection of two Sets"}.
{name, "intersection/1"}.
{fsummary, "Return the intersection of a list of Sets"}.
{name, "subtract/2"}.
{fsummary, "Return the difference of two Sets"}.
{name, "is_subset/2"}.
{fsummary, "Test for subset"}.
{name, "fold/3"}.
{fsummary, "Fold over set elements"}.
{name, "filter/2"}.
{fsummary, "Filter set elements"}.
{module, "shell"}.
{modulesummary, "The Erlang Shell"}.
{name, "history/1"}.
{fsummary, "Sets the number of previous commands to keep"}.
{name, "results/1"}.
{fsummary, "Sets the number of previous commands to keep"}.
{name, "start_restricted/1"}.
{fsummary, "Exits a normal shell and starts a restricted shell."}.
{name, "stop_restricted/0"}.
{fsummary, "Exits a restricted shell and starts a normal shell."}.
{module, "shell_default"}.
{modulesummary, "Customizing the Erlang Environment"}.
{module, "slave"}.
{modulesummary, "Functions to Starting and Controlling Slave Nodes "}.
{name, "start/1"}.
{name, "start/2"}.
{name, "start/3"}.
{fsummary, "Start a slave node on a host"}.
{name, "start_link/1"}.
{name, "start_link/2"}.
{name, "start_link/3"}.
{fsummary, "Start and link to a slave node on a host"}.
{name, "stop/1"}.
{fsummary, "Stop (kill) a node"}.
{name, "pseudo/1"}.
{fsummary, "Start a number of pseudo servers"}.
{name, "pseudo/2"}.
{fsummary, "Start a number of pseudo servers"}.
{name, "relay/1"}.
{fsummary, "Run a pseudo server"}.
{module, "sofs"}.
{modulesummary, "Functions for Manipulating Sets of Sets"}.
{name, "a_function/2"}.
{fsummary, "Create a function."}.
{name, "canonical_relation/1"}.
{fsummary, "Return the canonical map."}.
{name, "composite/2"}.
{fsummary, "Return the composite of two functions."}.
{name, "constant_function/2"}.
{fsummary, "Create the function that maps each element of a set onto another set."}.
{name, "converse/1"}.
{fsummary, "Return the converse of a binary relation."}.
{name, "difference/2"}.
{fsummary, "Return the difference of two sets."}.
{name, "digraph_to_family/2"}.
{fsummary, "Create a family from a directed graph."}.
{name, "domain/1"}.
{fsummary, "Return the domain of a binary relation."}.
{name, "drestriction/2"}.
{fsummary, "Return a restriction of a binary relation."}.
{name, "drestriction/3"}.
{fsummary, "Return a restriction of a relation."}.
{name, "empty_set/0"}.
{fsummary, "Return the untyped empty set."}.
{name, "extension/3"}.
{fsummary, "Extend the domain of a binary relation."}.
{name, "family/2"}.
{fsummary, "Create a family of subsets."}.
{name, "family_difference/2"}.
{fsummary, "Return the difference of two families."}.
{name, "family_domain/1"}.
{fsummary, "Return a family of domains."}.
{name, "family_field/1"}.
{fsummary, "Return a family of fields."}.
{name, "family_intersection/1"}.
{fsummary, "Return the intersection of a family of sets of sets."}.
{name, "family_intersection/2"}.
{fsummary, "Return the intersection of two families."}.
{name, "family_projection/2"}.
{fsummary, "Return a family of modified subsets."}.
{name, "family_range/1"}.
{fsummary, "Return a family of ranges."}.
{name, "family_specification/2"}.
{fsummary, "Select a subset of a family using a predicate."}.
{name, "family_to_digraph/2"}.
{fsummary, "Create a directed graph from a family."}.
{name, "family_to_relation/1"}.
{fsummary, "Create a binary relation from a family."}.
{name, "family_union/1"}.
{fsummary, "Return the union of a family of sets of sets."}.
{name, "family_union/2"}.
{fsummary, "Return the union of two families."}.
{name, "field/1"}.
{fsummary, "Return the field of a binary relation."}.
{name, "from_external/2"}.
{fsummary, "Create a set."}.
{name, "from_sets/1"}.
{fsummary, "Create a set out of a list of sets."}.
{name, "from_sets/1"}.
{fsummary, "Create an ordered set out of a tuple of sets."}.
{name, "from_term/2"}.
{fsummary, "Create a set."}.
{name, "image/2"}.
{fsummary, "Return the image of a set under a binary relation."}.
{name, "intersection/1"}.
{fsummary, "Return the intersection of a set of sets."}.
{name, "intersection/2"}.
{fsummary, "Return the intersection of two sets."}.
{name, "intersection_of_family/1"}.
{fsummary, "Return the intersection of a family."}.
{name, "inverse/1"}.
{fsummary, "Return the inverse of a function."}.
{name, "inverse_image/2"}.
{fsummary, "Return the inverse image of a set under a binary relation."}.
{name, "is_a_function/1"}.
{fsummary, "Test for a function."}.
{name, "is_disjoint/2"}.
{fsummary, "Test for disjoint sets."}.
{name, "is_empty_set/1"}.
{fsummary, "Test for an empty set."}.
{name, "is_equal/2"}.
{fsummary, "Test two sets for equality."}.
{name, "is_set/1"}.
{fsummary, "Test for an unordered set."}.
{name, "is_sofs_set/1"}.
{fsummary, "Test for an unordered set."}.
{name, "is_subset/2"}.
{fsummary, "Test two sets for subset."}.
{name, "is_type/1"}.
{fsummary, "Test for a type."}.
{name, "join/4"}.
{fsummary, "Return the join of two relations."}.
{name, "multiple_relative_product/2"}.
{fsummary, "Return the multiple relative product of a tuple of binary relations and a relation."}.
{name, "no_elements/1"}.
{fsummary, "Return the number of elements of a set."}.
{name, "partition/1"}.
{fsummary, "Return the coarsest partition given a set of sets."}.
{name, "partition/2"}.
{fsummary, "Return a partition of a set."}.
{name, "partition/3"}.
{fsummary, "Return a partition of a set."}.
{name, "partition_family/2"}.
{fsummary, "Return a family indexing a partition."}.
{name, "product/1"}.
{fsummary, "Return the Cartesian product of a tuple of sets."}.
{name, "product/2"}.
{fsummary, "Return the Cartesian product of two sets."}.
{name, "projection/2"}.
{fsummary, "Return a set of substituted elements."}.
{name, "range/1"}.
{fsummary, "Return the range of a binary relation."}.
{name, "relation/2"}.
{fsummary, "Create a relation."}.
{name, "relation_to_family/1"}.
{fsummary, "Create a family from a binary relation."}.
{name, "relative_product/2"}.
{fsummary, "Return the relative product of a tuple of binary relations and a binary relation."}.
{name, "relative_product/2"}.
{fsummary, "Return the relative product of two binary relations."}.
{name, "relative_product1/2"}.
{fsummary, "Return the relative_product of two binary relations."}.
{name, "restriction/2"}.
{fsummary, "Return a restriction of a binary relation."}.
{name, "restriction/3"}.
{fsummary, "Return a restriction of a set."}.
{name, "set/2"}.
{fsummary, "Create a set of atoms or any type of sets."}.
{name, "specification/2"}.
{fsummary, "Select a subset using a predicate."}.
{name, "strict_relation/1"}.
{fsummary, "Return the strict relation corresponding to a given relation."}.
{name, "substitution/2"}.
{fsummary, "Return a function with a given set as domain."}.
{name, "symdiff/2"}.
{fsummary, "Return the symmetric difference of two sets."}.
{name, "symmetric_partition/2"}.
{fsummary, "Return a partition of two sets."}.
{name, "to_external/1"}.
{fsummary, "Return the elements of a set."}.
{name, "to_sets/1"}.
{fsummary, "Return a list or a tuple of the elements of set."}.
{name, "type/1"}.
{fsummary, "Return the type of a set."}.
{name, "union/1"}.
{fsummary, "Return the union of a set of sets."}.
{name, "union/2"}.
{fsummary, "Return the union of two sets."}.
{name, "union_of_family/1"}.
{fsummary, "Return the union of a family."}.
{name, "weak_relation/1"}.
{fsummary, "Return the weak relation corresponding to a given relation."}.
{module, "string"}.
{modulesummary, "String Processing Functions"}.
{name, "len/1"}.
{fsummary, "Return the length of a string"}.
{name, "equal/2"}.
{fsummary, "Test string equality"}.
{name, "concat/2"}.
{fsummary, "Concatenate two strings"}.
{name, "chr/2"}.
{name, "rchr/2"}.
{fsummary, "Return the index of the first/last occurrence of Character in String"}.
{name, "str/2"}.
{name, "rstr/2"}.
{fsummary, "Find the index of a substring"}.
{name, "span/2"}.
{name, "cspan/2"}.
{fsummary, "Span characters at start of string"}.
{name, "substr/2"}.
{name, "substr/3"}.
{fsummary, "Return a substring of String"}.
{name, "tokens/2"}.
{fsummary, "Split string into tokens"}.
{name, "chars/2"}.
{name, "chars/3"}.
{fsummary, "Returns a string consisting of numbers of characters"}.
{name, "copies/2"}.
{fsummary, "Copy a string"}.
{name, "words/1"}.
{name, "words/2"}.
{fsummary, "Count blank separated words"}.
{name, "sub_word/2"}.
{name, "sub_word/3"}.
{fsummary, "Extract subword"}.
{name, "strip/1"}.
{name, "strip/2"}.
{name, "strip/3"}.
{fsummary, "Strip leading or trailing characters"}.
{name, "left/2"}.
{name, "left/3"}.
{fsummary, "Adjust left end of string"}.
{name, "right/2"}.
{name, "right/3"}.
{fsummary, "Adjust right end of string"}.
{name, "centre/2"}.
{name, "centre/3"}.
{fsummary, "Center a string"}.
{name, "sub_string/2"}.
{name, "sub_string/3"}.
{fsummary, "Extract a substring"}.
{name, "to_float/1"}.
{fsummary, "Returns a float whose text representation is the integers (ASCII values) in String."}.
{name, "to_integer/1"}.
{fsummary, "Returns an integer whose text representation is the integers (ASCII values) in String."}.
{module, "supervisor"}.
{modulesummary, "Generic Supervisor Behaviour"}.
{name, "start_link/2"}.
{name, "start_link/3"}.
{fsummary, "Create a supervisor process."}.
{name, "start_child/2"}.
{fsummary, "Dynamically add a child process to a supervisor. "}.
{name, "terminate_child/2"}.
{fsummary, "Terminate a child process belonging to a supervisor. "}.
{name, "delete_child/2"}.
{fsummary, "Delete a child specification from a supervisor. "}.
{name, "restart_child/2"}.
{fsummary, "Restart a terminated child process belonging to a supervisor."}.
{name, "which_children/1"}.
{fsummary, "Return information about all children specifications and child processes belonging to a supervisor."}.
{name, "check_childspecs/1"}.
{fsummary, "Check if child specifications are syntactically correct. "}.
{name, "Module:init/1"}.
{fsummary, "Return a supervisor specification."}.
{module, "supervisor_bridge"}.
{modulesummary, "Generic Supervisor Bridge Behaviour."}.
{name, "start_link/2"}.
{name, "start_link/3"}.
{fsummary, "Create a supervisor bridge process."}.
{name, "Module:init/1"}.
{fsummary, "Initialize process and start subsystem."}.
{name, "Module:terminate/2"}.
{fsummary, "Clean up and stop subsystem."}.
{module, "sys"}.
{modulesummary, "A Functional Interface to System Messages"}.
{name, "log/2"}.
{name, "log/3"}.
{fsummary, "Log system events in memory"}.
{name, "log_to_file/2"}.
{name, "log_to_file/3"}.
{fsummary, "Log system events to the specified file"}.
{name, "statistics/2"}.
{name, "statistics/3"}.
{fsummary, "Enable or disable the collections of statistics"}.
{name, "trace/2"}.
{name, "trace/3"}.
{fsummary, "Print all system events on standard_io"}.
{name, "no_debug/1"}.
{name, "no_debug/2"}.
{fsummary, "Turn off debugging"}.
{name, "suspend/1"}.
{name, "suspend/2"}.
{fsummary, "Suspend the process"}.
{name, "resume/1"}.
{name, "resume/2"}.
{fsummary, "Resume a suspended process"}.
{name, "change_code/4"}.
{name, "change_code/5"}.
{fsummary, "Send the code change system message to the process"}.
{name, "get_status/1"}.
{name, "get_status/2"}.
{fsummary, "Get the status of the process"}.
{name, "install/3"}.
{name, "install/4"}.
{fsummary, "Install a debug function in the process"}.
{name, "remove/2"}.
{name, "remove/3"}.
{fsummary, "Remove a debug function from the process"}.
{name, "debug_options/1"}.
{fsummary, "Convert a list of options to a debug structure"}.
{name, "get_debug/3"}.
{fsummary, "Get the data associated with a debug option"}.
{name, "handle_debug/1"}.
{fsummary, "Generate a system event"}.
{name, "handle_system_msg/6"}.
{fsummary, "Take care of system messages"}.
{name, "print_log/1"}.
{fsummary, "Print the logged events in the debug structure"}.
{name, "Mod:system_continue/3"}.
{fsummary, "Called when the process should continue its execution"}.
{name, "Mod:system_terminate/4"}.
{fsummary, "Called when the process should terminate"}.
{name, "Mod:system_code_change/4"}.
{fsummary, "Called when the process should perform a code change"}.
{module, "timer"}.
{modulesummary, "Timer Functions "}.
{name, "start/0"}.
{fsummary, "Start a global timer server (named timer_server). "}.
{name, "apply_after/4"}.
{fsummary, "Apply Module:Function(Arguments) after a specified Time. "}.
{name, "send_after/3"}.
{name, "send_after/2"}.
{fsummary, "Send Message to Pid after a specified Time. "}.
{name, "exit_after/3"}.
{name, "exit_after/2"}.
{name, "kill_after/2"}.
{name, "kill_after/1"}.
{fsummary, "Send an exit signal with Reason after a specified Time."}.
{name, "apply_interval/4"}.
{fsummary, "Evaluate Module:Function(Arguments) repeatedly at intervals of Time. "}.
{name, "send_interval/3"}.
{name, "send_interval/2"}.
{fsummary, "Send Message repeatedly at intervals of Time."}.
{name, "cancel/1"}.
{fsummary, "Cancel a previously requested timeout identified by TRef."}.
{name, "sleep/1"}.
{fsummary, "Suspend the calling process for Time amount of milliseconds."}.
{name, "tc/3"}.
{fsummary, "Measure the real time it takes to evaluate apply(Module, Function, Arguments) "}.
{name, "now_diff/2"}.
{fsummary, "Calculate time difference between now/0 timestamps "}.
{name, "seconds/1"}.
{fsummary, "Convert Seconds to Milliseconds."}.
{name, "minutes/1"}.
{fsummary, "Converts Minutes to Milliseconds."}.
{name, "hours/1"}.
{fsummary, "Convert Hours to Milliseconds."}.
{name, "hms/3"}.
{fsummary, "Convert Hours+Minutes+Seconds to Milliseconds."}.
{module, "win32reg"}.
{modulesummary, "win32reg provides access to the registry on Windows"}.
{name, "change_key/2"}.
{fsummary, "Move to a key in the registry "}.
{name, "change_key_create/2"}.
{fsummary, "Move to a key, create it if it is not there "}.
{name, "close/1"}.
{fsummary, "Close the registry. "}.
{name, "current_key/1"}.
{fsummary, "Return the path to the current key. "}.
{name, "delete_key/1"}.
{fsummary, "Delete the current key"}.
{name, "delete_value/2"}.
{fsummary, "Delete the named value on the current key. "}.
{name, "expand/1"}.
{fsummary, "Expand a string with environment variables "}.
{name, "format_error/1"}.
{fsummary, "Convert an POSIX errorcode to a string "}.
{name, "open/1"}.
{fsummary, "Open the registry for reading or writing "}.
{name, "set_value/3"}.
{fsummary, "Set value at the current registry key with specified name. "}.
{name, "sub_keys/1"}.
{fsummary, "Get subkeys to the current key. "}.
{name, "value/2"}.
{fsummary, "Get the named value on the current key. "}.
{name, "values/1"}.
{fsummary, "Get all values on the current key. "}.
{module, "zip"}.
{modulesummary, " Utility for reading and creating 'zip' arhcives. "}.
{name, "zip/2"}.
{name, "zip/3"}.
{name, "create/2"}.
{name, "create/3"}.
{fsummary, "Create a zip archive with options"}.
{name, "unzip/1"}.
{name, "unzip/2"}.
{name, "extract/1"}.
{name, "extract/2"}.
{fsummary, "Extract files from a zip archive"}.
{name, "list_dir/1"}.
{name, "list_dir/2"}.
{name, "table/1"}.
{name, "table/2"}.
{fsummary, "Retrieve the name of all files in a zip archive"}.
{name, "t/1"}.
{fsummary, "Print the name of each file in a zip archive"}.
{name, "tt/1"}.
{fsummary, "Print name and information for each file in a zip archive"}.
{name, "zip_open/1"}.
{name, "zip_open/2"}.
{fsummary, "Open an archive and return a handle to it"}.
{name, "zip_list_dir/1"}.
{fsummary, "Return a table of files in open zip archive"}.
{name, "zip_get/1"}.
{name, "zip_get/2"}.
{fsummary, "Extract files from an open archive"}.
{name, "zip_close/1"}.
{fsummary, "Close an open archive"}.
|