Removed zip_long() from See Alsos.

This commit is contained in:
Garth Minette 2021-11-10 19:02:51 -08:00
parent 225d6f512b
commit 522f0399d7
2 changed files with 1 additions and 2 deletions

View File

@ -777,7 +777,7 @@ function group_sort(list, idx) =
// Usage:
// groupings = group_data(groups, values);
// Topics: Array Handling
// See Also: zip(), zip_long()
// See Also: zip()
// Description:
// Given a list of integer group numbers, and an equal-length list of values,
// returns a list of groups with the values sorted into the corresponding groups.

View File

@ -1056,7 +1056,6 @@ function full_flatten(l) =
// triples = zip(a,b,c);
// quads = zip([LIST1,LIST2,LIST3,LIST4]);
// Topics: List Handling, Iteration
// See Also: zip_long()
// Description:
// Zips together two or more lists into a single list. For example, if you have two
// lists [3,4,5], and [8,7,6], and zip them together, you get [ [3,8],[4,7],[5,6] ].