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
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!-- This document was generated using DocBuilder 3.3.3 -->
<HTML>
<HEAD>
<TITLE>lists</TITLE>
<SCRIPT type="text/javascript" src="../../../../doc/erlresolvelinks.js">
</SCRIPT>
<STYLE TYPE="text/css">
<!--
.REFBODY { margin-left: 13mm }
.REFTYPES { margin-left: 8mm }
-->
</STYLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0000FF" VLINK="#FF00FF"
ALINK="#FF0000">
<!-- refpage -->
<CENTER>
<A HREF="http://www.erlang.se">
<IMG BORDER=0 ALT="[Ericsson AB]" SRC="min_head.gif">
</A>
<H1>lists</H1>
</CENTER>
<H3>MODULE</H3>
<DIV CLASS=REFBODY>
lists
</DIV>
<H3>MODULE SUMMARY</H3>
<DIV CLASS=REFBODY>
List Processing Functions
</DIV>
<H3>DESCRIPTION</H3>
<DIV CLASS=REFBODY>
<P>This module contains functions for list processing. The functions
are organized in two groups: those in the first group perform a
particular operation on one or more lists, whereas those in the
second group are higher-order functions, using a fun as argument
to perform an operation on one list.
<P>Unless otherwise stated, all functions assume that position
numbering starts at 1. That is, the first element of a list is at
position 1.
</DIV>
<H3>EXPORTS</H3>
<P><A NAME="append/1"><STRONG><CODE>append(ListOfLists) -> List1</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>ListOfLists = [List]</CODE></STRONG><BR>
<STRONG><CODE>List = List1 = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns a list in which all the sub-lists of
<CODE>ListOfLists</CODE> have been appended. For example:
<PRE>
> <STRONG>lists:append([[1, 2, 3], [a, b], [4, 5, 6]]).</STRONG>
[1,2,3,a,b,4,5,6]
</PRE>
</DIV>
<P><A NAME="append/2"><STRONG><CODE>append(List1, List2) -> List3</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>List1 = List2 = List3 = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns a new list <CODE>List3</CODE> which is made from
the elements of <CODE>List1</CODE> followed by the elements of
<CODE>List2</CODE>. For example:
<PRE>
> <STRONG>lists:append("abc", "def").</STRONG>
"abcdef"
</PRE>
<P><CODE>lists:append(A, B)</CODE> is equivalent to <CODE>A ++ B</CODE>.
</DIV>
<P><A NAME="concat/1"><STRONG><CODE>concat(Things) -> string()</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Things = [Thing]</CODE></STRONG><BR>
<STRONG><CODE>Thing = atom() | integer() | float() | string()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Concatenates the text representation of the elements
of <CODE>Things</CODE>. The elements of <CODE>Things</CODE> can be atoms,
integers, floats or strings.
<PRE>
> <STRONG>lists:concat([doc, '/', file, '.', 3]).</STRONG>
"doc/file.3"
</PRE>
</DIV>
<P><A NAME="delete/2"><STRONG><CODE>delete(Elem, List1) -> List2</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Elem = term()</CODE></STRONG><BR>
<STRONG><CODE>List1 = List2 = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns a copy of <CODE>List1</CODE> where the first occurrence of
<CODE>Elem</CODE>, if present, is deleted.
</DIV>
<P><A NAME="duplicate/2"><STRONG><CODE>duplicate(N, Elem) -> List</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>N = int()</CODE></STRONG><BR>
<STRONG><CODE>Elem = term()</CODE></STRONG><BR>
<STRONG><CODE>List = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns a list which contains N copies of the term
<CODE>Elem</CODE>. For example:
<PRE>
> <STRONG>lists:duplicate(5, xx).</STRONG>
[xx,xx,xx,xx,xx]
</PRE>
</DIV>
<P><A NAME="flatlength/1"><STRONG><CODE>flatlength(DeepList) -> int()</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>DeepList = [term() | DeepList]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Equivalent to <CODE>length(flatten(DeepList))</CODE>, but more
efficient.
</DIV>
<P><A NAME="flatten/1"><STRONG><CODE>flatten(DeepList) -> List</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>DeepList = [term() | DeepList]</CODE></STRONG><BR>
<STRONG><CODE>List = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns a flattened version of <CODE>DeepList</CODE>.
</DIV>
<P><A NAME="flatten/2"><STRONG><CODE>flatten(DeepList, Tail) -> List</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>DeepList = [term() | DeepList]</CODE></STRONG><BR>
<STRONG><CODE>Tail = List = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns a flattened version of <CODE>DeepList</CODE> with the tail
<CODE>Tail</CODE> appended.
</DIV>
<P><A NAME="keydelete/3"><STRONG><CODE>keydelete(Key, N, TupleList1) -> TupleList2</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Key = term()</CODE></STRONG><BR>
<STRONG><CODE>N = 1..size(Tuple)</CODE></STRONG><BR>
<STRONG><CODE>TupleList1 = TupleList2 = [Tuple]</CODE></STRONG><BR>
<STRONG><CODE>Tuple = tuple()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns a copy of <CODE>TupleList1</CODE> where the first
occurrence of a tuple whose Nth element is <CODE>Key</CODE> is
deleted, if present.
</DIV>
<P><A NAME="keymember/3"><STRONG><CODE>keymember(Key, N, TupleList) -> bool()</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Key = term()</CODE></STRONG><BR>
<STRONG><CODE>N = 1..size(Tuple)</CODE></STRONG><BR>
<STRONG><CODE>TupleList = [Tuple]</CODE></STRONG><BR>
<STRONG><CODE>Tuple = tuple()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns <CODE>true</CODE> if there is a tuple in <CODE>TupleList</CODE>
whose Nth element is <CODE>Key</CODE>, otherwise <CODE>false</CODE>.
</DIV>
<P><A NAME="keymerge/3"><STRONG><CODE>keymerge(N, TupleList1, TupleList2) -> TupleList3</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>N = 1..size(Tuple)</CODE></STRONG><BR>
<STRONG><CODE>TupleList1 = TupleList2 = TupleList3 = [Tuple]</CODE></STRONG><BR>
<STRONG><CODE>Tuple = tuple()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns the sorted list formed by merging <CODE>TupleList1</CODE>
and <CODE>TupleList2</CODE>. The sorting is performed on
the Nth element of each tuple. Both <CODE>TupleList1</CODE> and
<CODE>TupleList2</CODE> must be key-sorted prior to evaluating this
function. When two keys are equal, elements from
<CODE>TupleList1</CODE> are picked before elements from
<CODE>TupleList2</CODE>.
</DIV>
<P><A NAME="keyreplace/4"><STRONG><CODE>keyreplace(Key, N, TupleList1, NewTuple) -> TupleList2
</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Key = term()</CODE></STRONG><BR>
<STRONG><CODE>N = 1..size(Tuple)</CODE></STRONG><BR>
<STRONG><CODE>TupleList1 = TupleList2 = [Tuple]</CODE></STRONG><BR>
<STRONG><CODE>NewTuple = Tuple = tuple()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns a copy of <CODE>TupleList1</CODE>, where the first
occurrence of a tuple whose Nth element is <CODE>Key</CODE>, if
present, is replaced with <CODE>NewTuple</CODE>.
</DIV>
<P><A NAME="keysearch/3"><STRONG><CODE>keysearch(Key, N, TupleList) -> {value, Tuple} | false
</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Key = term()</CODE></STRONG><BR>
<STRONG><CODE>N = 1..size(Tuple)</CODE></STRONG><BR>
<STRONG><CODE>TupleList = [Tuple]</CODE></STRONG><BR>
<STRONG><CODE>Tuple = tuple()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Searches the list of the tuples <CODE>TupleList</CODE> for a
tuple whose <CODE>N</CODE>th element is <CODE>Key</CODE>. Returns
<CODE>{value, Tuple}</CODE> if such a tuple is found, or
<CODE>false</CODE> otherwise.
</DIV>
<P><A NAME="keysort/2"><STRONG><CODE>keysort(N, TupleList1) -> TupleList2</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>N = 1..size(Tuple)</CODE></STRONG><BR>
<STRONG><CODE>TupleList1 = TupleList2 = [Tuple]</CODE></STRONG><BR>
<STRONG><CODE>Tuple = tuple()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns a list containing the sorted elements of
<CODE>TupleList1</CODE>. Sorting is performed on the Nth element of
the tuples.
</DIV>
<P><A NAME="last/1"><STRONG><CODE>last(List) -> Last</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>List = [term()], length(List)>0</CODE></STRONG><BR>
<STRONG><CODE>Last = term()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns the last element in <CODE>List</CODE>.
</DIV>
<P><A NAME="max/1"><STRONG><CODE>max(List) -> Max</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>List = [term()], length(List)>0</CODE></STRONG><BR>
<STRONG><CODE>Max = term()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns the maximum element of <CODE>List</CODE>.
</DIV>
<P><A NAME="member/2"><STRONG><CODE>member(Elem, List) -> bool()</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Elem = term()</CODE></STRONG><BR>
<STRONG><CODE>List = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns <CODE>true</CODE> if <CODE>Elem</CODE> is an element of
<CODE>List</CODE>, otherwise <CODE>false</CODE>.
</DIV>
<P><A NAME="merge/1"><STRONG><CODE>merge(ListOfLists) -> List1</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>ListOfLists = [List]</CODE></STRONG><BR>
<STRONG><CODE>List = List1 = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns the sorted list formed by merging all the sub-lists
of <CODE>ListOfLists</CODE>. All sub-lists must be sorted prior to
evaluating this function.
</DIV>
<P><A NAME="merge/2"><STRONG><CODE>merge(List1, List2) -> List3</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>List1 = List2 = List3 = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns the sorted list formed by merging <CODE>List1</CODE> and
<CODE>List2</CODE>. Both <CODE>List1</CODE> and <CODE>List2</CODE> must be
sorted prior to evaluating this function.
</DIV>
<P><A NAME="merge/3"><STRONG><CODE>merge(Fun, List1, List2) -> List3</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Fun = fun(A, B) -> bool()</CODE></STRONG><BR>
<STRONG><CODE>List1 = [A]</CODE></STRONG><BR>
<STRONG><CODE>List2 = [B]</CODE></STRONG><BR>
<STRONG><CODE>List3 = [A | B]</CODE></STRONG><BR>
<STRONG><CODE>A = B = term()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns the sorted list formed by merging <CODE>List1</CODE> and
<CODE>List2</CODE>. Both <CODE>List1</CODE> and <CODE>List2</CODE> must be
sorted according to the ordering function <CODE>Fun</CODE> prior
to evaluating this function. <CODE>Fun(A, B)</CODE> should return
<CODE>true</CODE> if <CODE>A</CODE> comes before <CODE>B</CODE> in the ordering,
<CODE>false</CODE> otherwise.
</DIV>
<P><A NAME="merge3/3"><STRONG><CODE>merge3(List1, List2, List3) -> List4</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>List1 = List2 = List3 = List4 = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns the sorted list formed by merging <CODE>List1</CODE>,
<CODE>List2</CODE> and <CODE>List3</CODE>. All of <CODE>List1</CODE>,
<CODE>List2</CODE> and <CODE>List3</CODE> must be sorted prior to
evaluating this function.
</DIV>
<P><A NAME="min/1"><STRONG><CODE>min(List) -> Min</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>List = [term()], length(List)>0</CODE></STRONG><BR>
<STRONG><CODE>Min = term()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns the minimum element of <CODE>List</CODE>.
</DIV>
<P><A NAME="nth/2"><STRONG><CODE>nth(N, List) -> Elem</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>N = 1..length(List)</CODE></STRONG><BR>
<STRONG><CODE>List = [term()]</CODE></STRONG><BR>
<STRONG><CODE>Elem = term()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns the Nth element of <CODE>List</CODE>. For example:
<PRE>
> <STRONG>lists:nth(3, [a, b, c, d, e]).</STRONG>
c
</PRE>
</DIV>
<P><A NAME="nthtail/2"><STRONG><CODE>nthtail(N, List1) -> Tail</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>N = 0..length(List1)</CODE></STRONG><BR>
<STRONG><CODE>List1 = Tail = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns the Nth tail of <CODE>List</CODE>, that is, the sublist of
<CODE>List</CODE> starting at <CODE>N+1</CODE> and continuing up to
the end of the list. For example:
<PRE>
> <STRONG>lists:nthtail(3, [a, b, c, d, e]).</STRONG>
[d,e]
> <STRONG>tl(tl(tl([a, b, c, d, e]))).</STRONG>
[d,e]
> <STRONG>lists:nthtail(0, [a, b, c, d, e]).</STRONG>
[a,b,c,d,e]
> <STRONG>lists:nthtail(5, [a, b, c, d, e]).</STRONG>
[]
</PRE>
</DIV>
<P><A NAME="prefix/2"><STRONG><CODE>prefix(List1, List2) -> bool()</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>List1 = List2 = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns <CODE>true</CODE> if <CODE>List1</CODE> is a prefix of
<CODE>List2</CODE>, otherwise <CODE>false</CODE>.
</DIV>
<P><A NAME="reverse/1"><STRONG><CODE>reverse(List1) -> List2</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>List1 = List2 = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns a list with the top level elements in <CODE>List1</CODE>
in reverse order.
</DIV>
<P><A NAME="reverse/2"><STRONG><CODE>reverse(List1, Tail) -> List2</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>List1 = Tail = List2 = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns a list with the top level elements in <CODE>List1</CODE>
in reverse order, with the tail <CODE>Tail</CODE> appended. For
example:
<PRE>
> <STRONG>lists:reverse([1, 2, 3, 4], [a, b, c]).</STRONG>
[4,3,2,1,a,b,c]
</PRE>
</DIV>
<P><A NAME="seq/2"><STRONG><CODE>seq(From, To) -> Seq</CODE></STRONG></A><BR>
<A NAME="seq/3"><STRONG><CODE>seq(From, To, Incr) -> Seq</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>From = To = Incr = int()</CODE></STRONG><BR>
<STRONG><CODE>Seq = [int()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns a sequence of integers which starts with <CODE>From</CODE>
and contains the successive results of adding <CODE>Incr</CODE> to
the previous element, until <CODE>To</CODE> has been reached or
passed (in the latter case, <CODE>To</CODE> is not an element of
the sequence). <CODE>Incr</CODE> defaults to 1.
<P>Failure: If <CODE>To<From</CODE> and <CODE>Incr</CODE> is positive, or
if <CODE>To>From</CODE> and <CODE>Incr</CODE> is negative, or if
<CODE>Incr==0</CODE> and <CODE>From/=To</CODE>.
<P>Examples:
<PRE>
> <STRONG>lists:seq(1, 10).</STRONG>
[1,2,3,4,5,6,7,8,9,10]
> <STRONG>lists:seq(1, 20, 3).</STRONG>
[1,4,7,10,13,16,19]
> <STRONG>lists:seq(1, 1, 0).</STRONG>
[1]
</PRE>
</DIV>
<P><A NAME="sort/1"><STRONG><CODE>sort(List1) -> List2</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>List1 = List2 = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns a list containing the sorted elements of
<CODE>List1</CODE>.
</DIV>
<P><A NAME="sort/2"><STRONG><CODE>sort(Fun, List1) -> List2</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Fun = fun(Elem1, Elem2) -> bool()</CODE></STRONG><BR>
<STRONG><CODE>Elem1 = Elem2 = term()</CODE></STRONG><BR>
<STRONG><CODE>List1 = List2 = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns a list containing the sorted elements of
<CODE>List1</CODE>, according to the ordering function <CODE>Fun</CODE>.
<CODE>Fun(A, B)</CODE> should return <CODE>true</CODE> if <CODE>A</CODE> comes
before <CODE>B</CODE> in the ordering, <CODE>false</CODE> otherwise.
</DIV>
<P><A NAME="split/2"><STRONG><CODE>split(N, List1) -> {List2, List3}</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>N = 0..length(List1)</CODE></STRONG><BR>
<STRONG><CODE>List1 = List2 = List3 = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Splits <CODE>List1</CODE> into <CODE>List2</CODE> and <CODE>List3</CODE>.
<CODE>List2</CODE> contains the first <CODE>N</CODE> elements and
<CODE>List3</CODE> the rest of the elements (the Nth tail).
</DIV>
<P><A NAME="sublist/2"><STRONG><CODE>sublist(List1, Len) -> List2</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>List1 = List2 = [term()]</CODE></STRONG><BR>
<STRONG><CODE>Len = int()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns the sub-list of <CODE>List1</CODE> starting at position 1
and with (max) <CODE>Len</CODE> elements. It is not an error for
<CODE>Len</CODE> to exceed the length of the list -- in that case
the whole list is returned.
</DIV>
<P><A NAME="sublist/3"><STRONG><CODE>sublist(List1, Start, Len) -> List2</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>List1 = List2 = [term()]</CODE></STRONG><BR>
<STRONG><CODE>Start = 1..(length(List1)+1)</CODE></STRONG><BR>
<STRONG><CODE>Len = int()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns the sub-list of <CODE>List1</CODE> starting at <CODE>Start</CODE>
and with (max) <CODE>Len</CODE> elements. It is not an error for
<CODE>Start+Len</CODE> to exceed the length of the list.
<PRE>
> <STRONG>lists:sublist([1,2,3,4], 2, 2).</STRONG>
[2,3]
> <STRONG>lists:sublist([1,2,3,4], 2, 5).</STRONG>
[2,3,4]
> <STRONG>lists:sublist([1,2,3,4], 5, 2).</STRONG>
[]
</PRE>
</DIV>
<P><A NAME="subtract/2"><STRONG><CODE>subtract(List1, List2) -> List3</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>List1 = List2 = List3 = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns a new list <CODE>List3</CODE> which is a copy of
<CODE>List1</CODE>, subjected to the following procedure: for each
element in <CODE>List2</CODE>, its first occurrence in <CODE>List1</CODE>
is removed. For example:
<PRE>
> <STRONG>lists:subtract("123212", "212").</STRONG>
"312".
</PRE>
<P><CODE>lists:subtract(A,B)</CODE> is equivalent to <CODE>A -- B</CODE>.
</DIV>
<P><A NAME="suffix/2"><STRONG><CODE>suffix(List1, List2) -> bool()</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY>
<P>Returns <CODE>true</CODE> if <CODE>List1</CODE> is a suffix of
<CODE>List2</CODE>, otherwise <CODE>false</CODE>.
</DIV>
<P><A NAME="sum/1"><STRONG><CODE>sum(List) -> number()</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>List = [number()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns the sum of the elements in <CODE>List</CODE>.
</DIV>
<P><A NAME="ukeymerge/3"><STRONG><CODE>ukeymerge(N, TupleList1, TupleList2) -> TupleList3</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>N = 1..size(Tuple)</CODE></STRONG><BR>
<STRONG><CODE>TupleList1 = TupleList2 = TupleList3 = [Tuple]</CODE></STRONG><BR>
<STRONG><CODE>Tuple = tuple()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns the sorted list formed by merging <CODE>TupleList1</CODE>
and <CODE>TupleList2</CODE> while removing consecutive duplicate
keys. The merge is performed on the <CODE>N</CODE>th element of
each tuple. Both <CODE>TupleList1</CODE> and <CODE>TupleList2</CODE>
must be key-sorted without duplicates prior to evaluating
this function. When elements in the input lists compare
equal, elements from <CODE>TupleList1</CODE> are picked.
</DIV>
<P><A NAME="ukeysort/2"><STRONG><CODE>ukeysort(N, TupleList1) -> TupleList2</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>N = 1..size(Tuple)</CODE></STRONG><BR>
<STRONG><CODE>TupleList1 = TupleList2 = [Tuple]</CODE></STRONG><BR>
<STRONG><CODE>Tuple = tuple()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns a list containing the sorted elements of
<CODE>TupleList1</CODE> where all but the first element of the
elements comparing equal have been removed. Sorting is
performed on the Nth element of the tuples.
</DIV>
<P><A NAME="umerge/1"><STRONG><CODE>umerge(ListOfLists) -> List1</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>ListOfLists = [List]</CODE></STRONG><BR>
<STRONG><CODE>List = List1 = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns the sorted list formed by merging all the sub-lists
of <CODE>ListOfLists</CODE> while removing duplicates. All sub-lists
must be sorted and contain no duplicates prior to evaluating
this function.
</DIV>
<P><A NAME="umerge/2"><STRONG><CODE>umerge(List1, List2) -> List3</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>List1 = List2 = List3 = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns the sorted list formed by merging <CODE>List1</CODE> and
<CODE>List2</CODE> while removing duplicates. Both <CODE>List1</CODE>
and <CODE>List2</CODE> must be sorted and contain no duplicates
prior to evaluating this function.
</DIV>
<P><A NAME="umerge/3"><STRONG><CODE>umerge(Fun, List1, List2) -> List3</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Fun = fun(A, B) -> bool()</CODE></STRONG><BR>
<STRONG><CODE>List1 = [A]</CODE></STRONG><BR>
<STRONG><CODE>List2 = [B]</CODE></STRONG><BR>
<STRONG><CODE>List3 = [A | B]</CODE></STRONG><BR>
<STRONG><CODE>A = B = term()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns the sorted list formed by merging <CODE>List1</CODE> and
<CODE>List2</CODE> while removing consecutive duplicates. Both
<CODE>List1</CODE> and <CODE>List2</CODE> must be sorted according to
the ordering function <CODE>Fun</CODE> and contain no duplicates
prior to evaluating this function. <CODE>Fun(A, B)</CODE> should
return <CODE>true</CODE> if <CODE>A</CODE> equals or comes before <CODE>B</CODE>
in the ordering, <CODE>false</CODE> otherwise.
</DIV>
<P><A NAME="umerge3/3"><STRONG><CODE>umerge3(List1, List2, List3) -> List4</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>List1 = List2 = List3 = List4 = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns the sorted list formed by merging <CODE>List1</CODE>,
<CODE>List2</CODE> and <CODE>List3</CODE> while removing duplicates. All
of <CODE>List1</CODE>, <CODE>List2</CODE> and <CODE>List3</CODE> must be
sorted and contain no duplicates prior to evaluating this
function.
</DIV>
<P><A NAME="unzip/1"><STRONG><CODE>unzip(List1) -> {List2, List3}</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>List1 = [{X, Y}]</CODE></STRONG><BR>
<STRONG><CODE>List2 = [X]</CODE></STRONG><BR>
<STRONG><CODE>List3 = [Y]</CODE></STRONG><BR>
<STRONG><CODE>X = Y = term()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>"Unzips" a list of two-tuples into two lists, where the first
list contains the first element of each tuple, and the second
list contains the second element of each tuple.
</DIV>
<P><A NAME="unzip3/1"><STRONG><CODE>unzip3(List1) -> {List2, List3, List4}</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>List1 = [{X, Y, Z}]</CODE></STRONG><BR>
<STRONG><CODE>List2 = [X]</CODE></STRONG><BR>
<STRONG><CODE>List3 = [Y]</CODE></STRONG><BR>
<STRONG><CODE>List4 = [Z]</CODE></STRONG><BR>
<STRONG><CODE>X = Y = Z = term()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>"Unzips" a list of three-tuples into three lists, where
the first list contains the first element of each tuple,
the second list contains the second element of each tuple, and
the third list contains the third element of each tuple.
</DIV>
<P><A NAME="usort/1"><STRONG><CODE>usort(List1) -> List2</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>List1 = List2 = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns a list containing the sorted elements of <CODE>List1</CODE>
without duplicates.
</DIV>
<P><A NAME="usort/2"><STRONG><CODE>usort(Fun, List1) -> List2</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Fun = fun(Elem1, Elem2) -> bool()</CODE></STRONG><BR>
<STRONG><CODE>Elem1 = Elem2 = term()</CODE></STRONG><BR>
<STRONG><CODE>List1 = List2 = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns a list which contains the sorted elements of
<CODE>List1</CODE> where all but the first element of the elements
comparing equal according to the ordering function
<CODE>Fun</CODE> have been removed.<CODE>Fun(A, B)</CODE> should return
<CODE>true</CODE> if <CODE>A</CODE> equals or comes before <CODE>B</CODE> in
the ordering, <CODE>false</CODE> otherwise.
</DIV>
<P><A NAME="zip/2"><STRONG><CODE>zip(List1, List2) -> List3</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>List1 = [X]</CODE></STRONG><BR>
<STRONG><CODE>List2 = [Y]</CODE></STRONG><BR>
<STRONG><CODE>List3 = [{X, Y}]</CODE></STRONG><BR>
<STRONG><CODE>X = Y = term()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>"Zips" two lists of equal length into one list of two-tuples,
where the first element of each tuple is taken from the first
list and the second element is taken from corresponding
element in the second list.
</DIV>
<P><A NAME="zip3/3"><STRONG><CODE>zip3(List1, List2, List3) -> List4</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>List1 = [X]</CODE></STRONG><BR>
<STRONG><CODE>List2 = [Y]</CODE></STRONG><BR>
<STRONG><CODE>List3 = [Z]</CODE></STRONG><BR>
<STRONG><CODE>List3 = [{X, Y, Z}]</CODE></STRONG><BR>
<STRONG><CODE>X = Y = Z = term()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>"Zips" three lists of equal length into one list of
three-tuples, where the first element of each tuple is taken
from the first list, the second element is taken from
corresponding element in the second list, and the third
element is taken from the corresponding element in the third
list.
</DIV>
<P><A NAME="zipwith/3"><STRONG><CODE>zipwith(Combine, List1, List2) -> List3</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Combine = fun(X, Y) -> T</CODE></STRONG><BR>
<STRONG><CODE>List1 = [X]</CODE></STRONG><BR>
<STRONG><CODE>List2 = [Y]</CODE></STRONG><BR>
<STRONG><CODE>List3 = [T]</CODE></STRONG><BR>
<STRONG><CODE>X = Y = T = term()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Combine the elements of two lists of equal length into one
list. For each pair <CODE>X, Y</CODE> of list elements from the two
lists, the element in the result list will be
<CODE>Combine(X, Y)</CODE>.
<P><CODE>zipwith(fun(X, Y) -> {X,Y} end, List1, List2)</CODE> is
equivalent to <CODE>zip(List1, List2)</CODE>.
<P>Examples:
<PRE>
> <STRONG>lists:zipwith(fun(X, Y) -> X+Y end, [1,2,3], [4,5,6]).</STRONG>
[5,7,9]
</PRE>
</DIV>
<P><A NAME="zipwith3/4"><STRONG><CODE>zipwith3(Combine, List1, List2, List3) -> List4</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Combine = fun(X, Y, Z) -> T</CODE></STRONG><BR>
<STRONG><CODE>List1 = [X]</CODE></STRONG><BR>
<STRONG><CODE>List2 = [Y]</CODE></STRONG><BR>
<STRONG><CODE>List3 = [Z]</CODE></STRONG><BR>
<STRONG><CODE>List4 = [T]</CODE></STRONG><BR>
<STRONG><CODE>X = Y = Z = T = term()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Combine the elements of three lists of equal length into one
list. For each triple <CODE>X, Y, Z</CODE> of list elements from
the three lists, the element in the result list will be
<CODE>Combine(X, Y, Z)</CODE>.
<P><CODE>zipwith3(fun(X, Y, Z) -> {X,Y,Z} end, List1, List2,
List3)</CODE> is equivalent to <CODE>zip3(List1, List2,
List3)</CODE>.
<P>Examples:
<PRE>
> <STRONG>lists:zipwith3(fun(X, Y, Z) -> X+Y+Z end, [1,2,3], [4,5,6], [7,8,9]).</STRONG>
[12,15,18]
> <STRONG>lists:zipwith3(fun(X, Y, Z) -> [X,Y,Z] end, [a,b,c], [x,y,z], [1,2,3]).</STRONG>
[[a,x,1],[b,y,2],[c,z,3]]
</PRE>
</DIV>
<P><A NAME="all/2"><STRONG><CODE>all(Pred, List) -> bool()</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Pred = fun(Elem) -> bool()</CODE></STRONG><BR>
<STRONG><CODE>Elem = term()</CODE></STRONG><BR>
<STRONG><CODE>List = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns <CODE>true</CODE> if <CODE>Pred(Elem)</CODE> returns
<CODE>true</CODE> for all elements <CODE>Elem</CODE> in <CODE>List</CODE>,
otherwise <CODE>false</CODE>.
</DIV>
<P><A NAME="any/2"><STRONG><CODE>any(Pred, List) -> bool()</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Pred = fun(Elem) -> bool()</CODE></STRONG><BR>
<STRONG><CODE>Elem = term()</CODE></STRONG><BR>
<STRONG><CODE>List = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns <CODE>true</CODE> if <CODE>Pred(Elem)</CODE> returns
<CODE>true</CODE> for at least one element <CODE>Elem</CODE> in
<CODE>List</CODE>.
</DIV>
<P><A NAME="dropwhile/2"><STRONG><CODE>dropwhile(Pred, List1) -> List2</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Pred = fun(Elem) -> bool()</CODE></STRONG><BR>
<STRONG><CODE>Elem = term()</CODE></STRONG><BR>
<STRONG><CODE>List1 = List2 = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Drops elements <CODE>Elem</CODE> from <CODE>List1</CODE> while
<CODE>Pred(Elem)</CODE> returns <CODE>true</CODE> and returns
the remaining list.
</DIV>
<P><A NAME="filter/2"><STRONG><CODE>filter(Pred, List1) -> List2</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Pred = fun(Elem) -> bool()</CODE></STRONG><BR>
<STRONG><CODE>Elem = term()</CODE></STRONG><BR>
<STRONG><CODE>List1 = List2 = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P><CODE>List2</CODE> is a list of all elements <CODE>Elem</CODE> in
<CODE>List1</CODE> for which <CODE>Pred(Elem)</CODE> returns
<CODE>true</CODE>.
</DIV>
<P><A NAME="flatmap/2"><STRONG><CODE>flatmap(Fun, List1) -> List2</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Fun = fun(A) -> [B]</CODE></STRONG><BR>
<STRONG><CODE>List1 = [A]</CODE></STRONG><BR>
<STRONG><CODE>List2 = [B]</CODE></STRONG><BR>
<STRONG><CODE>A = B = term()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Takes a function from <CODE>A</CODE>s to lists of <CODE>B</CODE>s, and a
list of <CODE>A</CODE>s (<CODE>List1</CODE>) and produces a list of
<CODE>B</CODE>s by applying the function to every element in
<CODE>List1</CODE> and appending the resulting lists.
<P>That is, <CODE>flatmap</CODE> behaves as if it had been defined as
follows:
<PRE>
flatmap(Fun, List1) ->
append(map(Fun, List1))
</PRE>
<P>Example:
<PRE>
> <STRONG>lists:flatmap(fun(X)->[X,X] end, [a,b,c]).</STRONG>
[a,a,b,b,c,c]
</PRE>
</DIV>
<P><A NAME="foldl/3"><STRONG><CODE>foldl(Fun, Acc0, List) -> Acc1</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Fun = fun(Elem, AccIn) -> AccOut</CODE></STRONG><BR>
<STRONG><CODE>Elem = term()</CODE></STRONG><BR>
<STRONG><CODE>Acc0 = Acc1 = AccIn = AccOut = term()</CODE></STRONG><BR>
<STRONG><CODE>List = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Calls <CODE>Fun(Elem, AccIn)</CODE> on successive elements <CODE>A</CODE>
of <CODE>List</CODE>, starting with <CODE>AccIn == Acc0</CODE>.
<CODE>Fun/2</CODE> must return a new accumulator which is passed to
the next call. The function returns the final value of
the accumulator. <CODE>Acc0</CODE> is returned if the list is empty.
For example:
<PRE>
> <STRONG>lists:foldl(fun(X, Sum) -> X + Sum end, 0, [1,2,3,4,5]).</STRONG>
15
> <STRONG>lists:foldl(fun(X, Prod) -> X * Prod end, 1, [1,2,3,4,5]).</STRONG>
120
</PRE>
</DIV>
<P><A NAME="foldr/3"><STRONG><CODE>foldr(Fun, Acc0, List) -> Acc1</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Fun = fun(Elem, AccIn) -> AccOut</CODE></STRONG><BR>
<STRONG><CODE>Elem = term()</CODE></STRONG><BR>
<STRONG><CODE>Acc0 = Acc1 = AccIn = AccOut = term()</CODE></STRONG><BR>
<STRONG><CODE>List = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Like <CODE>foldl/3</CODE>, but the list is traversed from right to
left. For example:
<PRE>
> <STRONG>P = fun(A, AccIn) -> io:format("~p ", [A]), AccIn end.</STRONG>
#Fun<erl_eval.12.2225172>
> <STRONG>lists:foldl(P, void, [1,2,3]).</STRONG>
1 2 3 void
> <STRONG>lists:foldr(P, void, [1,2,3]).</STRONG>
3 2 1 void
</PRE>
<P><CODE>foldl/3</CODE> is tail recursive and would usually be
preferred to <CODE>foldr/3</CODE>.
</DIV>
<P><A NAME="foreach/2"><STRONG><CODE>foreach(Fun, List) -> void()</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Fun = fun(Elem) -> void()</CODE></STRONG><BR>
<STRONG><CODE>Elem = term()</CODE></STRONG><BR>
<STRONG><CODE>List = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Calls <CODE>Fun(Elem)</CODE> for each element <CODE>Elem</CODE> in
<CODE>List</CODE>. This function is used for its side effects and
the evaluation order is defined to be the same as the order
of the elements in the list.
</DIV>
<P><A NAME="keymap/3"><STRONG><CODE>keymap(Fun, N, TupleList1) -> TupleList2</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Fun = fun(Term1) -> Term2</CODE></STRONG><BR>
<STRONG><CODE>Term1 = Term2 = term()</CODE></STRONG><BR>
<STRONG><CODE>N = 1..size(Tuple)</CODE></STRONG><BR>
<STRONG><CODE>TupleList1 = TupleList2 = [tuple()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Returns a list of tuples where, for each tuple in
<CODE>TupleList1</CODE>, the Nth element <CODE>Term1</CODE> of the tuple
has been replaced with the result of calling
<CODE>Fun(Term1)</CODE>.
<P>Examples:
<PRE>
> <STRONG>Fun = fun(Atom) -> atom_to_list(Atom) end.</STRONG>
#Fun<erl_eval.6.10732646>
2> <STRONG>lists:keymap(Fun, 2, [{name,jane,22},{name,lizzie,20},{name,lydia,15}]).</STRONG>
[{name,"jane",22},{name,"lizzie",20},{name,"lydia",15}]
</PRE>
</DIV>
<P><A NAME="map/2"><STRONG><CODE>map(Fun, List1) -> List2</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Fun = fun(A) -> B</CODE></STRONG><BR>
<STRONG><CODE>List1 = [A]</CODE></STRONG><BR>
<STRONG><CODE>List2 = [B]</CODE></STRONG><BR>
<STRONG><CODE>A = B = term()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Takes a function from <CODE>A</CODE>s to <CODE>B</CODE>s, and a list of
<CODE>A</CODE>s and produces a list of <CODE>B</CODE>s by applying
the function to every element in the list. This function is
used to obtain the return values. The evaluation order is
implementation dependent.
</DIV>
<P><A NAME="mapfoldl/3"><STRONG><CODE>mapfoldl(Fun, Acc0, List1) -> {List2, Acc1}</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Fun = fun(A, AccIn) -> {B, AccOut}</CODE></STRONG><BR>
<STRONG><CODE>Acc0 = Acc1 = AccIn = AccOut = term()</CODE></STRONG><BR>
<STRONG><CODE>List1 = [A]</CODE></STRONG><BR>
<STRONG><CODE>List2 = [B]</CODE></STRONG><BR>
<STRONG><CODE>A = B = term()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P><CODE>mapfold</CODE> combines the operations of <CODE>map/2</CODE> and
<CODE>foldl/3</CODE> into one pass. An example, summing
the elements in a list and double them at the same time:
<PRE>
> <STRONG>lists:mapfoldl(fun(X, Sum) -> {2*X, X+Sum} end,</STRONG>
<STRONG> 0, [1,2,3,4,5]).</STRONG>
{[2,4,6,8,10],15}
</PRE>
</DIV>
<P><A NAME="mapfoldr/3"><STRONG><CODE>mapfoldr(Fun, Acc0, List1) -> {List2, Acc1}</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Fun = fun(A, AccIn) -> {B, AccOut}</CODE></STRONG><BR>
<STRONG><CODE>Acc0 = Acc1 = AccIn = AccOut = term()</CODE></STRONG><BR>
<STRONG><CODE>List1 = [A]</CODE></STRONG><BR>
<STRONG><CODE>List2 = [B]</CODE></STRONG><BR>
<STRONG><CODE>A = B = term()</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P><CODE>mapfold</CODE> combines the operations of <CODE>map/2</CODE> and
<CODE>foldr/3</CODE> into one pass.
</DIV>
<P><A NAME="partition/2"><STRONG><CODE>partition(Pred, List) -> {Satisfying, NonSatisfying}</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Pred = fun(Elem) -> bool()</CODE></STRONG><BR>
<STRONG><CODE>Elem = term()</CODE></STRONG><BR>
<STRONG><CODE>List = Satisfying = NonSatisfying = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Partitions <CODE>List</CODE> into two lists, where the first list
contains all elements for which <CODE>Pred(Elem)</CODE> returns
<CODE>true</CODE>, and the second list contains all elements for
which <CODE>Pred(Elem)</CODE> returns <CODE>false</CODE>.
<P>Examples:
<PRE>
> <STRONG>lists:partition(fun(A) -> A rem 2 == 1 end, [1,2,3,4,5,6,7]).</STRONG>
{[1,3,5,7],[2,4,6]}
> <STRONG>lists:partition(fun(A) -> is_atom(A) end, [a,b,1,c,d,2,3,4,e]).</STRONG>
{[a,b,c,d,e],[1,2,3,4]}
</PRE>
<P>See also <CODE>splitwith/2</CODE> for a different way to partition
a list.
</DIV>
<P><A NAME="splitwith/2"><STRONG><CODE>splitwith(Pred, List) -> {List1, List2}</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Pred = fun(Elem) -> bool()</CODE></STRONG><BR>
<STRONG><CODE>Elem = term()</CODE></STRONG><BR>
<STRONG><CODE>List = List1 = List2 = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Partitions <CODE>List</CODE> into two lists according to
<CODE>Pred</CODE>. <CODE>splitwith/2</CODE> behaves as if it is defined
as follows:
<PRE>
splitwith(Pred, List) ->
{takewhile(Pred, List), dropwhile(Pred, List)}.
</PRE>
<P>Examples:
<PRE>
> <STRONG>lists:splitwith(fun(A) -> A rem 2 == 1 end, [1,2,3,4,5,6,7]).</STRONG>
{[1],[2,3,4,5,6,7]}
> <STRONG>lists:splitwith(fun(A) -> is_atom(A) end, [a,b,1,c,d,2,3,4,e]).</STRONG>
{[a,b],[1,c,d,2,3,4,e]}
</PRE>
<P>See also <CODE>partition/2</CODE> for a different way to partition
a list.
</DIV>
<P><A NAME="takewhile/2"><STRONG><CODE>takewhile(Pred, List1) -> List2</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY><P>Types:
<DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>Pred = fun(Elem) -> bool()</CODE></STRONG><BR>
<STRONG><CODE>Elem = term()</CODE></STRONG><BR>
<STRONG><CODE>List1 = List2 = [term()]</CODE></STRONG><BR>
</DIV>
</DIV>
<DIV CLASS=REFBODY>
<P>Takes elements <CODE>Elem</CODE> from <CODE>List1</CODE> while
<CODE>Pred(Elem)</CODE> returns <CODE>true</CODE>, that is,
the function returns the longest prefix of the list for which
all elements satisfy the predicate.
</DIV>
<H3>AUTHORS</H3>
<DIV CLASS=REFBODY>
Joe Armstrong - support@erlang.ericsson.se<BR>
Robert Virding - support@erlang.ericsson.se<BR>
</DIV>
<CENTER>
<HR>
<SMALL>stdlib 1.14.2<BR>
Copyright © 1991-2006
<A HREF="http://www.erlang.se">Ericsson AB</A><BR>
</SMALL>
</CENTER>
</BODY>
</HTML>
|