mirror of
https://github.com/revarbat/BOSL2.git
synced 2025-08-29 10:09:56 +02:00
Minor edits in in_list and transpose, removal of is_simple list
This commit is contained in:
@@ -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]);
|
||||
|
Reference in New Issue
Block a user