mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-09 08:16:50 +02:00
rename param
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
use <_hashset_add_impl.scad>;
|
use <_hashset_add_impl.scad>;
|
||||||
|
|
||||||
function _hashset(elems, leng, buckets, eq, hash, i = 0) =
|
function _hashset(lt, leng, buckets, eq, hash, i = 0) =
|
||||||
i == leng ? buckets :
|
i == leng ? buckets :
|
||||||
_hashset(elems, leng, _hashset_add(buckets, elems[i], eq, hash), eq, hash, i + 1);
|
_hashset(lt, leng, _hashset_add(buckets, lt[i], eq, hash), eq, hash, i + 1);
|
Reference in New Issue
Block a user