From 522f0399d7fb56e58e012f23262823ba9ef2a60d Mon Sep 17 00:00:00 2001 From: Garth Minette Date: Wed, 10 Nov 2021 19:02:51 -0800 Subject: [PATCH] Removed zip_long() from See Alsos. --- comparisons.scad | 2 +- lists.scad | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/comparisons.scad b/comparisons.scad index 3ea5d07..caca091 100644 --- a/comparisons.scad +++ b/comparisons.scad @@ -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. diff --git a/lists.scad b/lists.scad index ab557e6..1951c7c 100644 --- a/lists.scad +++ b/lists.scad @@ -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] ].