1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-03-14 02:59:42 +01:00

rename param

This commit is contained in:
Justin Lin 2021-03-06 09:03:33 +08:00
parent 5e716fb5f6
commit de21ff1c7e

View File

@ -1,5 +1,5 @@
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 :
_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);