Merge pull request #725 from revarbat/revarbat_dev

Removed zip_long() from See Alsos.
This commit is contained in:
Revar Desmera 2021-11-10 19:04:44 -08:00 committed by GitHub
commit 5dd9cff487
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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] ].