From e96528994926b48093f2dfa106a6daa40bb2f36d Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Thu, 4 Mar 2021 17:17:42 +0800 Subject: [PATCH] format --- src/collection/hashset.scad | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/collection/hashset.scad b/src/collection/hashset.scad index b88d5774..16657040 100644 --- a/src/collection/hashset.scad +++ b/src/collection/hashset.scad @@ -59,12 +59,10 @@ function hashset_del(set, elem, hash = df_hash, eq = df_eq) = slice(set, bidx + 1) ); - function _find(lt, elem, eq, leng, i = 0) = i == leng ? -1 : eq(lt[i], elem) ? i : _find(lt, elem, eq, leng, i + 1); - function hashset_list(set) = [ for(bucket = set) for(elem = bucket)