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
|
{srcfile, "application"}.
{appname, "stdlib"}.
{appvsn, "1.10"}.
{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, "Return some 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, "Compares 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 "}.
{module, "c"}.
{modulesummary, "Command Interface Module"}.
{name, "bt/1"}.
{fsummary, "Evaluate erlang:process_display(Pid, backtrace)"}.
{name, "c/1"}.
{fsummary, "Compile a file"}.
{name, "c/2"}.
{fsummary, "Compile a file"}.
{name, "cd/1"}.
{fsummary, "Change directory"}.
{name, "flush/0"}.
{fsummary, "Flush the shell message queue"}.
{name, "help/0"}.
{fsummary, "Display help information"}.
{name, "i/0"}.
{fsummary, "Display system information"}.
{name, "i/3"}.
{fsummary, "Evaluate process_info(pid(X, Y, Z))"}.
{name, "l/1"}.
{fsummary, "Load code into the system"}.
{name, "lc/1"}.
{fsummary, "Compile several files"}.
{name, "ls/0"}.
{fsummary, "List files"}.
{name, "ls/1"}.
{fsummary, "List files in Dir"}.
{name, "m/0"}.
{fsummary, "List all loaded modules"}.
{name, "m/1"}.
{fsummary, "Display information about a module"}.
{name, "memory/0"}.
{fsummary, "Return memory allocation information "}.
{name, "memory/1"}.
{fsummary, "Return memory allocation information "}.
{name, "nc/1"}.
{fsummary, "Compile file and loads it on multiple nodes"}.
{name, "nc/2"}.
{fsummary, "Compile file and loads it on multiples nodes"}.
{name, "ni/0"}.
{fsummary, "Display network information"}.
{name, "nl/1"}.
{fsummary, "Load module in a network"}.
{name, "nregs/0"}.
{fsummary, "Display registered processes on all nodes"}.
{name, "pid/3"}.
{fsummary, "Make a Pid"}.
{name, "pwd/0"}.
{fsummary, "Print current working directory"}.
{name, "q/0"}.
{fsummary, "Stop the Erlang node"}.
{name, "regs/0"}.
{fsummary, "Display registered processes"}.
{name, "xm/1"}.
{fsummary, "Cross reference check a module"}.
{name, "zi/0"}.
{fsummary, "Display system information including zombies"}.
{module, "calendar"}.
{modulesummary, "Local and universal time, day-of-the-week, date and time conversions"}.
{name, "date_to_gregorian_days/3"}.
{name, "date_to_gregorian_days/1"}.
{fsummary, "Compute the number of days from year 0 up to the given date."}.
{name, "datetime_to_gregorian_seconds/1"}.
{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."}.
{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 a 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"}.
{name, "time_to_secnds/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, "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/2"}.
{fsummary, " Replace all objects of a Dets table. "}.
{name, "insert/2"}.
{fsummary, " Insert one or more objects into a Dets table. "}.
{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, "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, "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, "Searche 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"}.
{fsummary, "Evaluate expressions"}.
{name, "expr/2"}.
{name, "expr/3"}.
{fsummary, "Evaluate expression"}.
{name, "expr_list/2"}.
{name, "expr_list/3"}.
{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_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 a 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, "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, "Fixe 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 withe objects from a DETS table."}.
{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, "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, "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, "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, "Continues matching objects in an ETS table."}.
{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, "test_ms/2"}.
{fsummary, "Test a match_spec for use in ets:select/2."}.
{name, "to_dets/2"}.
{fsummary, "Fill a DETS table withe objects from an ETS table."}.
{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, "filename"}.
{modulesummary, "File Name Manipulation Functions"}.
{name, "absname/1"}.
{fsummary, "Convert a relative Filename to an absolute name "}.
{name, "absname/2"}.
{fsummary, "Convert the relative Filename to an absolute name, based on Directory. "}.
{name, "basename/1"}.
{fsummary, "Return the part of the Filename after the last directory separator "}.
{name, "basename/2"}.
{fsummary, "Return the last component of Filename with Extstripped "}.
{name, "dirname/1"}.
{fsummary, "Return the directory part of a path name"}.
{name, "extension/1"}.
{fsummary, "Return the file extension"}.
{name, "join/1"}.
{fsummary, "Join a list of file name Components with directory separators "}.
{name, "join/2"}.
{fsummary, "Join two file name 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, "Return all characters in Filename, except the extension."}.
{name, "split/1"}.
{fsummary, "Return a list whose elements are the file name components of Filename."}.
{name, "find_src/1"}.
{name, "find_src/2"}.
{fsummary, "Find the Filename and compilation options for a compiled Module."}.
{module, "gb_sets"}.
{modulesummary, "General Balanced Trees"}.
{name, "empty/0"}.
{fsummary, "get empty set"}.
{name, "is_empty/1"}.
{fsummary, "check if empty"}.
{name, "size/1"}.
{fsummary, "get number of elements"}.
{name, "singleton/1"}.
{fsummary, "new set with one element"}.
{name, "is_member/2"}.
{fsummary, "check for member"}.
{name, "insert/2"}.
{fsummary, "insert new element"}.
{name, "add/2"}.
{fsummary, "add element"}.
{name, "delete/2"}.
{fsummary, "delete element"}.
{name, "balance/1"}.
{fsummary, "rebalance tree representation"}.
{name, "union/2"}.
{fsummary, "union of set"}.
{name, "union/1"}.
{fsummary, "union of list of sets"}.
{name, "intersection/2"}.
{fsummary, "intersection of sets"}.
{name, "intersection/1"}.
{fsummary, "intersection of list of sets"}.
{name, "difference/2"}.
{fsummary, "difference of sets "}.
{name, "is_subset/2"}.
{fsummary, "check for subset"}.
{name, "to_list/1"}.
{fsummary, "get list from set"}.
{name, "from_list/1"}.
{fsummary, "make set from list"}.
{name, "from_ordset/1"}.
{fsummary, "make set from ordset"}.
{name, "take_smallest/1"}.
{fsummary, "extract smallest element"}.
{name, "iterator/1"}.
{fsummary, "make iterator on set"}.
{name, "next/1"}.
{fsummary, "traverse with iterator"}.
{name, "filter/2"}.
{fsummary, "filter with predicate "}.
{name, "fold/3"}.
{fsummary, "fold with fun"}.
{name, "is_set/1"}.
{fsummary, "not recommended"}.
{module, "gb_trees"}.
{modulesummary, "General Balanced Trees"}.
{name, "empty/0"}.
{fsummary, "returns empty tree"}.
{name, "is_empty/1"}.
{fsummary, "true if tree is empty"}.
{name, "size/1"}.
{fsummary, "number of nodes in tree"}.
{name, "lookup/2"}.
{fsummary, "looks up key in tree"}.
{name, "get/2"}.
{fsummary, "retreives value stored with key"}.
{name, "insert/3"}.
{fsummary, "inserts key and value in tree"}.
{name, "update/3"}.
{fsummary, "updates key to new value"}.
{name, "enter/3"}.
{fsummary, "inserts or updates key with value"}.
{name, "delete/2"}.
{fsummary, "removes key"}.
{name, "delete_any/2"}.
{fsummary, "removes key if present"}.
{name, "balance/1"}.
{fsummary, "rebalance tree"}.
{name, "is_defined/2"}.
{fsummary, "check if key exist"}.
{name, "keys/1"}.
{fsummary, "keys as list"}.
{name, "values/1"}.
{fsummary, "values as list"}.
{name, "to_list/1"}.
{fsummary, "keys and values as tuple-list"}.
{name, "from_orddict/1"}.
{fsummary, "make tree from orddict"}.
{name, "take_smallest/1"}.
{fsummary, "extract smallest key"}.
{name, "iterator/1"}.
{fsummary, "get iterator on tree"}.
{name, "next/1"}.
{fsummary, "iterate using iterator"}.
{module, "gen_event"}.
{modulesummary, "Generic Event Handling Behaviour"}.
{name, "start/0"}.
{name, "start/1"}.
{name, "start_link/0"}.
{name, "start_link/1"}.
{fsummary, "Create a generic event manager."}.
{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 due to code replacement"}.
{module, "gen_fsm"}.
{modulesummary, "Generic Finite State Machine Behaviour"}.
{name, "start/3"}.
{name, "start/4"}.
{name, "start_link/3"}.
{name, "start_link/4"}.
{fsummary, "Create a generic 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, "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 state data due to code replacement."}.
{module, "gen_server"}.
{modulesummary, "Generic Server Behaviour"}.
{name, "start/3"}.
{name, "start/4"}.
{name, "start_link/3"}.
{name, "start_link/4"}.
{fsummary, "Create a generic 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, "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 due to code replacement."}.
{module, "io"}.
{modulesummary, "Standard I/O Server Interface Functions "}.
{name, "put_chars/2"}.
{fsummary, "Write characters to standard output"}.
{name, "nl/1"}.
{fsummary, "Output a newline"}.
{name, "get_chars/3"}.
{fsummary, "Read characters from standard input"}.
{name, "get_line/2"}.
{fsummary, "Read a line from standard input"}.
{name, "write/2"}.
{fsummary, "Write a term"}.
{name, "read/2"}.
{fsummary, "Read a term"}.
{name, "fwrite/1"}.
{name, "format/1"}.
{fsummary, "Write formatted output"}.
{name, "fwrite/3"}.
{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 Erlang tokens"}.
{name, "scan_erl_form/1"}.
{name, "scan_erl_form/3"}.
{fsummary, "Read Erlang tokens"}.
{name, "parse_erl_exprs/1"}.
{name, "parse_erl_exprs/3"}.
{fsummary, "Read Erlang expressions"}.
{name, "parse_erl_form/1"}.
{name, "parse_erl_form/3"}.
{fsummary, "Read Erlang form"}.
{module, "io_lib"}.
{modulesummary, "IO Library Functions"}.
{name, "nl/0"}.
{fsummary, "Return 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, "List formatted output"}.
{name, "fread/2"}.
{fsummary, "List formatted input"}.
{name, "fread/3"}.
{fsummary, "Re-entrant formatted reader"}.
{name, "write_atom/1"}.
{fsummary, "Return an atom"}.
{name, "write_string/1"}.
{fsummary, "Return a string"}.
{name, "write_char/1"}.
{fsummary, "Return 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, "Interface Module"}.
{name, "flush_receive/0"}.
{fsummary, "Flush messages"}.
{name, "error_message/2"}.
{fsummary, "Print error message"}.
{name, "progname/0"}.
{fsummary, "Return Erlang starter"}.
{name, "nonl/1"}.
{fsummary, "Remove last newline"}.
{name, "send/2"}.
{fsummary, "Send a message"}.
{name, "sendw/2"}.
{fsummary, "Send a message and waits fo 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 in 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 a tuple for a tuple list"}.
{name, "keymember/3"}.
{fsummary, "Test for a key in a list of tuples"}.
{name, "keymerge/3"}.
{fsummary, "Merge two key-sorted lists"}.
{name, "keyreplace/4"}.
{fsummary, "Replace tuple in tuple list"}.
{name, "keysearch/3"}.
{fsummary, "Extract value of key in a list of tuples"}.
{name, "keysort/2"}.
{fsummary, "Sort a list by key"}.
{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, "Extract element from a list"}.
{name, "nthtail/2"}.
{fsummary, "Return the N'th tail in List1"}.
{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, "sublist/2"}.
{fsummary, "Return the first N elements of List"}.
{name, "sublist/3"}.
{fsummary, "Return a sub-list of list"}.
{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 and remove consecutive duplicates"}.
{name, "ukeysort/2"}.
{fsummary, "Sort a list by key and remove consecutive duplicates"}.
{name, "umerge/1"}.
{fsummary, "Merge a list of sorted lists without duplicates"}.
{name, "umerge/2"}.
{fsummary, "Merge two sorted lists without duplicates"}.
{name, "umerge/3"}.
{fsummary, "Sort a list"}.
{name, "umerge3/3"}.
{fsummary, "Merge three sorted lists without duplicates"}.
{name, "usort/1"}.
{fsummary, "Sort a list and remove duplicates"}.
{name, "usort/2"}.
{fsummary, "Sort a list and remove duplicates"}.
{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 X in the list satisfies Pred(X) "}.
{name, "dropwhile/2"}.
{fsummary, "Drop elements from List1 while Pred 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 function to each element of a list"}.
{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, "splitwith/2"}.
{fsummary, "Partition List1 into two lists according to Pred"}.
{name, "takewhile/2"}.
{fsummary, "Take elements from List1 while Pred 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, "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 epmty group on a node"}.
{name, "join/2"}.
{fsummary, "Join a Pid to a process group "}.
{name, "send/2"}.
{fsummary, "Send a message tuple to all members of a process group"}.
{name, "esend/2"}.
{fsummary, "Send a message tuple to all members of a process group except the current node"}.
{name, "members/1"}.
{fsummary, ">Return a list of the current members in the process group"}.
{module, "pool"}.
{modulesummary, "Load Distribution Facility "}.
{name, "start/1"}.
{fsummary, ">Start a new pool"}.
{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 expected lowest future loaded pool node"}.
{name, "pspawn_link/3"}.
{fsummary, "Spawn links a process on the expected lowest future loaded pool node"}.
{name, "get_node/0"}.
{fsummary, "Return the node ID of the expected lowest future loaded node"}.
{name, "new_node/2"}.
{fsummary, "Start a new node and attach it to an already existing pool"}.
{module, "proc_lib"}.
{modulesummary, "Plug-in Replacements for spawn/3,4 and spawn_link/3,4."}.
{name, "spawn/3"}.
{name, "spawn/4"}.
{fsummary, "Spawn a new process"}.
{name, "spawn_link/3"}.
{name, "spawn_link/4"}.
{fsummary, "Spawn a new process and sets a link"}.
{name, "start/3"}.
{name, "start/4"}.
{name, "start_link/3"}.
{name, "start_link/4"}.
{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"}.
{module, "queue"}.
{modulesummary, "Abstract Data Type for FIFO Queues"}.
{name, "new/0"}.
{fsummary, "Create a new empty FIFO queue"}.
{name, "in/2"}.
{fsummary, "Insert an item into a queue"}.
{name, "out/1"}.
{fsummary, "Remove an 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"}.
{module, "shell_default"}.
{modulesummary, "Customizing the Erlang Environment"}.
{module, "slave"}.
{modulesummary, "Functions to Starting and Controlling Slave Nodes "}.
{name, "start/1"}.
{fsummary, "Start a slave node at Host"}.
{name, "start_link/1"}.
{fsummary, "Start a slave node at Host"}.
{name, "start/2"}.
{fsummary, "Start a slave node at Host called Name@Host"}.
{name, "start_link/2"}.
{fsummary, "Start a slave node at Host called Name@Host"}.
{name, "start/3"}.
{fsummary, "Start a slave node at Host called Name@Host and passes Args to new node "}.
{name, "start_link/3"}.
{fsummary, "Start a slave node at Host called Name@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, "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_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."}.
{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"}.
{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, "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, "unix"}.
{modulesummary, "Calls to the UNIX Shell"}.
{name, "cmd/1"}.
{fsummary, "Make a call and return the answer in a list of characters."}.
{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. "}.
|