Minor edits in in_list and transpose, removal of is_simple list

This commit is contained in:
RonaldoCMP
2020-07-31 15:52:35 +01:00
parent 3b1d567219
commit 526c01109c
2 changed files with 16 additions and 70 deletions

View File

@@ -3,14 +3,6 @@ include <../std.scad>
// Section: List Query Operations
module test_is_simple_list() {
assert(is_simple_list([1,2,3,4]));
assert(is_simple_list([]));
assert(!is_simple_list([1,2,[3,4]]));
}
test_is_simple_list();
module test_select() {
l = [3,4,5,6,7,8,9];
assert(select(l, 5, 6) == [8,9]);