mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-06 04:09:47 +00:00
Merge pull request #725 from revarbat/revarbat_dev
Removed zip_long() from See Alsos.
This commit is contained in:
commit
5dd9cff487
2 changed files with 1 additions and 2 deletions
|
@ -777,7 +777,7 @@ function group_sort(list, idx) =
|
||||||
// Usage:
|
// Usage:
|
||||||
// groupings = group_data(groups, values);
|
// groupings = group_data(groups, values);
|
||||||
// Topics: Array Handling
|
// Topics: Array Handling
|
||||||
// See Also: zip(), zip_long()
|
// See Also: zip()
|
||||||
// Description:
|
// Description:
|
||||||
// Given a list of integer group numbers, and an equal-length list of values,
|
// 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.
|
// returns a list of groups with the values sorted into the corresponding groups.
|
||||||
|
|
|
@ -1056,7 +1056,6 @@ function full_flatten(l) =
|
||||||
// triples = zip(a,b,c);
|
// triples = zip(a,b,c);
|
||||||
// quads = zip([LIST1,LIST2,LIST3,LIST4]);
|
// quads = zip([LIST1,LIST2,LIST3,LIST4]);
|
||||||
// Topics: List Handling, Iteration
|
// Topics: List Handling, Iteration
|
||||||
// See Also: zip_long()
|
|
||||||
// Description:
|
// Description:
|
||||||
// Zips together two or more lists into a single list. For example, if you have two
|
// 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] ].
|
// lists [3,4,5], and [8,7,6], and zip them together, you get [ [3,8],[4,7],[5,6] ].
|
||||||
|
|
Loading…
Reference in a new issue