2019-04-20 00:02:17 +00:00
//////////////////////////////////////////////////////////////////////
2021-10-27 03:12:51 +00:00
// LibFile: lists.scad
2022-01-07 19:56:31 +00:00
// Functions for operating on generic lists. Provides functiosn for indexing lists, changing list
// structure, and constructing lists by rearranging or modifying another list.
2021-01-05 09:20:01 +00:00
// Includes:
// include <BOSL2/std.scad>
2021-12-13 23:48:30 +00:00
// FileGroup: Data Management
2022-01-07 19:56:31 +00:00
// FileSummary: List indexing, change list structure, rearrange/modify lists
2021-12-13 23:48:30 +00:00
// FileFootnotes: STD=Included in std.scad
2020-01-10 00:10:18 +00:00
//////////////////////////////////////////////////////////////////////
2019-04-20 00:02:17 +00:00
2021-03-02 06:44:00 +00:00
// Terminology:
2021-11-21 01:29:49 +00:00
// **List** = An ordered collection of zero or more arbitrary items. ie: `["a", "b", "c"]`, or `[3, "a", [4,5]]`
2021-03-02 06:44:00 +00:00
// **Vector** = A list of numbers. ie: `[4, 5, 6]`
// **Set** = A list of unique items.
2020-01-10 00:14:12 +00:00
2020-01-10 00:10:18 +00:00
// Section: List Query Operations
2019-04-20 00:02:17 +00:00
2020-08-30 11:12:36 +00:00
// Function: is_homogeneous()
2021-03-02 07:58:41 +00:00
// Alias: is_homogenous()
2023-03-31 07:20:27 +00:00
// Synopsis: Returns true if all members of a list are of the same type.
2021-03-02 06:44:00 +00:00
// Topics: List Handling, Type Checking
// See Also: is_vector(), is_matrix()
2023-03-31 07:20:27 +00:00
// Usage:
// bool = is_homogeneous(list, [depth]);
2020-08-30 11:12:36 +00:00
// Description:
2021-03-02 06:44:00 +00:00
// Returns true when the list has elements of same type up to the depth `depth`.
2020-08-30 11:12:36 +00:00
// Booleans and numbers are not distinguinshed as of distinct types.
// Arguments:
2021-01-25 07:26:39 +00:00
// l = the list to check
2022-04-07 21:28:41 +00:00
// depth = the lowest level the check is done. Default: 10
2020-08-30 11:12:36 +00:00
// Example:
2021-01-08 03:17:10 +00:00
// a = is_homogeneous([[1,["a"]], [2,["b"]]]); // Returns true
// b = is_homogeneous([[1,["a"]], [2,[true]]]); // Returns false
// c = is_homogeneous([[1,["a"]], [2,[true]]], 1); // Returns true
// d = is_homogeneous([[1,["a"]], [2,[true]]], 2); // Returns false
// e = is_homogeneous([[1,["a"]], [true,["b"]]]); // Returns true
2020-10-04 02:50:29 +00:00
function is_homogeneous ( l , depth = 10 ) =
2020-08-30 11:12:36 +00:00
! is_list ( l ) || l = = [ ] ? false :
let ( l0 = l [ 0 ] )
2021-07-02 10:30:13 +00:00
[ ] = = [ for ( i = [ 1 : 1 : len ( l ) - 1 ] ) if ( ! _same_type ( l [ i ] , l0 , depth + 1 ) ) 0 ] ;
2021-03-02 07:05:32 +00:00
function is_homogenous ( l , depth = 10 ) = is_homogeneous ( l , depth ) ;
2021-04-11 11:37:49 +00:00
2021-03-10 22:49:39 +00:00
2020-08-30 11:12:36 +00:00
function _same_type ( a , b , depth ) =
2020-10-04 02:50:29 +00:00
( depth = = 0 ) ||
( is_undef ( a ) && is_undef ( b ) ) ||
( is_bool ( a ) && is_bool ( b ) ) ||
( is_num ( a ) && is_num ( b ) ) ||
( is_string ( a ) && is_string ( b ) ) ||
( is_list ( a ) && is_list ( b ) && len ( a ) = = len ( b )
&& [ ] = = [ for ( i = idx ( a ) ) if ( ! _same_type ( a [ i ] , b [ i ] , depth - 1 ) ) 0 ] ) ;
2021-04-11 11:37:49 +00:00
2020-08-30 11:12:36 +00:00
2021-10-17 03:01:52 +00:00
// Function: min_length()
2023-04-05 00:12:19 +00:00
// Synopsis: Given a list of sublists, returns the length of the shortest sublist.
2021-10-16 03:13:30 +00:00
// Topics: List Handling
2021-10-17 03:01:52 +00:00
// See Also: max_length()
2023-03-31 07:20:27 +00:00
// Usage:
// llen = min_length(list);
2021-10-16 03:13:30 +00:00
// Description:
// Returns the length of the shortest sublist in a list of lists.
// Arguments:
2021-11-21 01:29:49 +00:00
// list = A list of lists.
2021-10-16 03:13:30 +00:00
// Example:
2021-10-17 03:01:52 +00:00
// slen = min_length([[3,4,5],[6,7,8,9]]); // Returns: 3
2021-11-21 01:29:49 +00:00
function min_length ( list ) =
assert ( is_list ( list ) , "Invalid input." )
min ( [ for ( v = list ) len ( v ) ] ) ;
2021-10-16 03:13:30 +00:00
2021-10-17 03:01:52 +00:00
// Function: max_length()
2023-04-05 00:12:19 +00:00
// Synopsis: Given a list of sublists, returns the length of the longest sublist.
2021-10-16 03:13:30 +00:00
// Topics: List Handling
2021-10-17 03:01:52 +00:00
// See Also: min_length()
2023-03-31 07:20:27 +00:00
// Usage:
// llen = max_length(list);
2021-10-16 03:13:30 +00:00
// Description:
// Returns the length of the longest sublist in a list of lists.
// Arguments:
2021-11-21 01:29:49 +00:00
// list = A list of lists.
2021-10-16 03:13:30 +00:00
// Example:
2021-10-17 03:01:52 +00:00
// llen = max_length([[3,4,5],[6,7,8,9]]); // Returns: 4
2021-11-21 01:29:49 +00:00
function max_length ( list ) =
assert ( is_list ( list ) , "Invalid input." )
max ( [ for ( v = list ) len ( v ) ] ) ;
2021-10-16 03:13:30 +00:00
2021-10-28 00:21:12 +00:00
// Internal. Not exposed.
function _list_shape_recurse ( v ) =
! is_list ( v [ 0 ] )
? len ( [ for ( entry = v ) if ( ! is_list ( entry ) ) 0 ] ) = = 0 ? [ ] : [ undef ]
: let (
firstlen = is_list ( v [ 0 ] ) ? len ( v [ 0 ] ) : undef ,
first = len ( [ for ( entry = v ) if ( ! is_list ( entry ) || ( len ( entry ) ! = firstlen ) ) 0 ] ) = = 0 ? firstlen : undef ,
leveldown = flatten ( v )
)
is_list ( leveldown [ 0 ] )
? concat ( [ first ] , _list_shape_recurse ( leveldown ) )
: [ first ] ;
function _list_shape_recurse ( v ) =
let ( alen = [ for ( vi = v ) is_list ( vi ) ? len ( vi ) : - 1 ] )
v = = [ ] || max ( alen ) = = - 1 ? [ ] :
let ( add = max ( alen ) ! = min ( alen ) ? undef : alen [ 0 ] )
concat ( add , _list_shape_recurse ( flatten ( v ) ) ) ;
// Function: list_shape()
2023-03-31 07:20:27 +00:00
// Synopsis: Returns the dimensions of an array.
// Topics: Matrices, List Handling
// See Also: is_homogenous()
2021-10-28 00:21:12 +00:00
// Usage:
// dims = list_shape(v, [depth]);
// Description:
// Returns the size of a multi-dimensional array, a list of the lengths at each depth.
// If the returned value has `dims[i] = j` then it means the ith index ranges of j items.
// The return `dims[0]` is equal to the length of v. Then `dims[1]` is equal to the
// length of the lists in v, and in general, `dims[i]` is equal to the length of the items
// nested to depth i in the list v. If the length of items at that depth is inconsistent, then
// `undef` is returned. If no items exist at that depth then `0` is returned. Note that
// for simple vectors or matrices it is faster to compute `len(v)` and `len(v[0])`.
// Arguments:
// v = list to get shape of
// depth = depth to compute the size of. If not given, returns a list of sizes at all depths.
// Example:
// a = list_shape([[[1,2,3],[4,5,6]],[[7,8,9],[10,11,12]]]); // Returns [2,2,3]
// b = list_shape([[[1,2,3],[4,5,6]],[[7,8,9],[10,11,12]]], 0); // Returns 2
// c = list_shape([[[1,2,3],[4,5,6]],[[7,8,9],[10,11,12]]], 2); // Returns 3
// d = list_shape([[[1,2,3],[4,5,6]],[[7,8,9]]]); // Returns [2,undef,3]
function list_shape ( v , depth = undef ) =
assert ( is_undef ( depth ) || ( is_finite ( depth ) && depth >= 0 ) , "Invalid depth." )
! is_list ( v ) ? 0 :
( depth = = undef )
? concat ( [ len ( v ) ] , _list_shape_recurse ( v ) )
: ( depth = = 0 )
? len ( v )
: let ( dimlist = _list_shape_recurse ( v ) )
( depth > len ( dimlist ) ) ? 0 : dimlist [ depth - 1 ] ;
2021-10-16 03:13:30 +00:00
// Function: in_list()
2023-03-31 07:20:27 +00:00
// Synopsis: Returns true if a value is in a list.
// Topics: List Handling
// See Also: select(), slice()
2021-10-16 03:13:30 +00:00
// Usage:
// bool = in_list(val, list, [idx]);
// Description:
// Returns true if value `val` is in list `list`. When `val==NAN` the answer will be false for any list.
// Arguments:
// val = The simple value to search for.
// list = The list to search.
// idx = If given, searches the given columns for matches for `val`.
// Example:
// a = in_list("bar", ["foo", "bar", "baz"]); // Returns true.
// b = in_list("bee", ["foo", "bar", "baz"]); // Returns false.
// c = in_list("bar", [[2,"foo"], [4,"bar"], [3,"baz"]], idx=1); // Returns true.
2021-10-29 00:23:16 +00:00
2021-10-29 01:07:41 +00:00
// Note that a huge complication occurs because OpenSCAD's search() finds
2021-10-29 00:23:16 +00:00
// index i as a hits if the val equals list[i] but also if val equals list[i][0].
// This means every hit needs to be checked to see if it's actually a hit,
// and if the first hit is a mismatch we have to keep searching.
// We assume that the normal case doesn't have mixed data, and try first
// with just one hit, but if this finds a mismatch then we try again
// with all hits, which could be slow for long lists.
2021-10-16 03:13:30 +00:00
function in_list ( val , list , idx ) =
2021-10-29 00:23:16 +00:00
assert ( is_list ( list ) , "Input is not a list" )
assert ( is_undef ( idx ) || is_finite ( idx ) , "Invalid idx value." )
let ( firsthit = search ( [ val ] , list , num_returns_per_match = 1 , index_col_num = idx ) [ 0 ] )
firsthit = = [ ] ? false
: is_undef ( idx ) && val = = list [ firsthit ] ? true
: is_def ( idx ) && val = = list [ firsthit ] [ idx ] ? true
// first hit was found but didn't match, so try again with all hits
: let ( allhits = search ( [ val ] , list , 0 , idx ) [ 0 ] )
is_undef ( idx ) ? [ for ( hit = allhits ) if ( list [ hit ] = = val ) 1 ] ! = [ ]
: [ for ( hit = allhits ) if ( list [ hit ] [ idx ] = = val ) 1 ] ! = [ ] ;
2021-10-16 03:13:30 +00:00
// Section: List Indexing
2019-04-20 00:02:17 +00:00
// Function: select()
2023-03-31 07:20:27 +00:00
// Synopsis: Returns one or more items from a list, with wrapping.
2021-03-30 07:46:59 +00:00
// Topics: List Handling
2023-03-31 07:20:27 +00:00
// See Also: slice(), column(), last()
2019-04-20 00:02:17 +00:00
// Description:
// Returns a portion of a list, wrapping around past the beginning, if end<start.
// The first item is index 0. Negative indexes are counted back from the end.
// The last item is -1. If only the `start` index is given, returns just the value
2021-06-21 22:24:54 +00:00
// at that position when `start` is a number or the selected list of entries when `start` is
// a list of indices or a range.
2019-04-20 00:02:17 +00:00
// Usage:
2021-06-27 03:59:33 +00:00
// item = select(list, start);
2021-07-02 10:30:13 +00:00
// item = select(list, [s:d:e]);
// item = select(list, [i0,i1...,ik]);
2021-06-27 03:59:33 +00:00
// list = select(list, start, end);
2019-04-20 00:02:17 +00:00
// Arguments:
// list = The list to get the portion of.
2021-06-22 00:13:40 +00:00
// start = Either the index of the first item or an index range or a list of indices.
// end = The index of the last item when `start` is a number. When `start` is a list or a range, `end` should not be given.
2019-04-20 00:02:17 +00:00
// Example:
// l = [3,4,5,6,7,8,9];
2021-01-08 03:17:10 +00:00
// a = select(l, 5, 6); // Returns [8,9]
// b = select(l, 5, 8); // Returns [8,9,3,4]
// c = select(l, 5, 2); // Returns [8,9,3,4,5]
// d = select(l, -3, -1); // Returns [7,8,9]
// e = select(l, 3, 3); // Returns [6]
// f = select(l, 4); // Returns 7
// g = select(l, -2); // Returns 8
// h = select(l, [1:3]); // Returns [4,5,6]
2021-06-21 22:24:54 +00:00
// i = select(l, [3,1]); // Returns [6,4]
2021-01-25 07:26:39 +00:00
function select ( list , start , end ) =
2020-07-24 21:54:34 +00:00
assert ( is_list ( list ) || is_string ( list ) , "Invalid list." )
2020-05-30 02:04:34 +00:00
let ( l = len ( list ) )
2021-01-25 07:26:39 +00:00
l = = 0
? [ ]
: end = = undef
? is_num ( start )
? list [ ( start % l + l ) % l ]
2021-11-04 12:09:29 +00:00
: assert ( start = = [ ] || is_vector ( start ) || is_range ( start ) , "Invalid start parameter" )
2020-07-24 21:54:34 +00:00
[ for ( i = start ) list [ ( i % l + l ) % l ] ]
2021-06-22 00:13:40 +00:00
: assert ( is_finite ( start ) , "When `end` is given, `start` parameter should be a number." )
2020-07-30 04:58:12 +00:00
assert ( is_finite ( end ) , "Invalid end parameter." )
2020-07-24 21:54:34 +00:00
let ( s = ( start % l + l ) % l , e = ( end % l + l ) % l )
2021-01-25 07:26:39 +00:00
( s < = e )
2021-11-04 12:09:29 +00:00
? [ for ( i = [ s : 1 : e ] ) list [ i ] ]
: [ for ( i = [ s : 1 : l - 1 ] ) list [ i ] ,
for ( i = [ 0 : 1 : e ] ) list [ i ] ] ;
2020-07-24 21:54:34 +00:00
2021-03-02 06:44:00 +00:00
// Function: slice()
2023-04-05 00:12:19 +00:00
// Synopsis: Returns part of a list without wrapping.
2023-03-31 07:20:27 +00:00
// Topics: List Handling
// See Also: select(), column(), last()
2021-03-30 07:46:59 +00:00
// Usage:
2021-06-27 03:59:33 +00:00
// list = slice(list, s, e);
2021-03-02 06:44:00 +00:00
// Description:
2021-03-30 07:46:59 +00:00
// Returns a slice of a list, from the first position `s` up to and including the last position `e`.
2023-01-28 16:53:02 +00:00
// The first item in the list is at index 0. Negative indexes are counted back from the end, with
// -1 referring to the last list item. If `s` is after `e` then the empty list is returned.
// If an index is off the start/end of the list it will refer to the list start/end.
2021-03-02 06:44:00 +00:00
// Arguments:
2021-03-30 07:46:59 +00:00
// list = The list to get the slice of.
2022-04-07 21:28:41 +00:00
// start = The index of the first item to return. Default: 0
// end = The index of the last item to return. Default: -1 (last item)
2021-03-02 06:44:00 +00:00
// Example:
2021-03-30 07:46:59 +00:00
// a = slice([3,4,5,6,7,8,9], 3, 5); // Returns [6,7,8]
2021-03-02 06:44:00 +00:00
// b = slice([3,4,5,6,7,8,9], 2, -1); // Returns [5,6,7,8,9]
2021-03-30 07:46:59 +00:00
// c = slice([3,4,5,6,7,8,9], 1, 1); // Returns [4]
// d = slice([3,4,5,6,7,8,9], 5); // Returns [8,9]
2021-03-02 06:44:00 +00:00
// e = slice([3,4,5,6,7,8,9], 2, -2); // Returns [5,6,7,8]
2021-03-30 07:46:59 +00:00
// f = slice([3,4,5,6,7,8,9], 4, 3; // Returns []
2023-01-28 16:53:02 +00:00
// g = slice([3,4,5], 1, 5; // Returns [4,5]
// h = slice([3,4,5], 5, 7); // Returns []
2022-04-07 21:28:41 +00:00
function slice ( list , start = 0 , end = - 1 ) =
2021-03-30 07:46:59 +00:00
assert ( is_list ( list ) )
2022-04-07 21:28:41 +00:00
assert ( is_int ( start ) )
2022-04-07 21:50:15 +00:00
assert ( is_int ( end ) )
2021-03-30 07:46:59 +00:00
! list ? [ ] :
let (
l = len ( list ) ,
2023-01-28 16:53:02 +00:00
start = start + ( start < 0 ? l : 0 ) ,
end = end + ( end < 0 ? l : 0 )
2021-03-30 07:46:59 +00:00
)
2023-01-28 16:53:02 +00:00
[ if ( start < = end && end >= 0 && start < = l ) for ( i = [ max ( start , 0 ) : 1 : min ( end , l - 1 ) ] ) list [ i ] ] ;
2021-03-02 06:44:00 +00:00
2023-05-30 04:48:48 +00:00
2020-12-03 20:21:05 +00:00
// Function: last()
2023-03-31 07:20:27 +00:00
// Synopsis: Returns the last item of a list.
2021-03-02 06:44:00 +00:00
// Topics: List Handling
2021-10-26 20:45:14 +00:00
// See Also: select(), slice(), column()
2023-03-31 07:20:27 +00:00
// Usage:
// item = last(list);
2020-12-03 20:21:05 +00:00
// Description:
// Returns the last element of a list, or undef if empty.
// Arguments:
// list = The list to get the last element of.
// Example:
// l = [3,4,5,6,7,8,9];
2021-01-08 03:17:10 +00:00
// x = last(l); // Returns 9.
2021-01-25 07:26:39 +00:00
function last ( list ) =
list [ len ( list ) - 1 ] ;
2020-12-03 20:21:05 +00:00
2021-03-25 07:23:36 +00:00
// Function: list_head()
2023-04-05 00:12:19 +00:00
// Synopsis: Returns the elements at the beginning of a list.
2021-03-02 06:44:00 +00:00
// Topics: List Handling
2021-03-25 07:23:36 +00:00
// See Also: select(), slice(), list_tail(), last()
2023-03-31 07:20:27 +00:00
// Usage:
// list = list_head(list, [to]);
2020-12-13 02:15:33 +00:00
// Description:
2021-03-25 07:23:36 +00:00
// Returns the head of the given list, from the first item up until the `to` index, inclusive.
2022-04-07 21:28:41 +00:00
// By default returns all but the last element of the list.
2021-03-25 07:23:36 +00:00
// If the `to` index is negative, then the length of the list is added to it, such that
// `-1` is the last list item. `-2` is the second from last. `-3` is third from last, etc.
// If the list is shorter than the given index, then the full list is returned.
// Arguments:
// list = The list to get the head of.
2022-04-07 21:28:41 +00:00
// to = The last index to include. If negative, adds the list length to it. ie: -1 is the last list item. Default: -2
2021-09-16 23:33:55 +00:00
// Example:
// hlist1 = list_head(["foo", "bar", "baz"]); // Returns: ["foo", "bar"]
// hlist2 = list_head(["foo", "bar", "baz"], -3); // Returns: ["foo"]
2024-11-28 01:20:56 +00:00
// hlist3 = list_head(["foo", "bar", "baz"], 1); // Returns: ["foo","bar"]
2021-09-16 23:33:55 +00:00
// hlist4 = list_head(["foo", "bar", "baz"], -5); // Returns: []
// hlist5 = list_head(["foo", "bar", "baz"], 5); // Returns: ["foo","bar","baz"]
2021-03-25 07:23:36 +00:00
function list_head ( list , to = - 2 ) =
assert ( is_list ( list ) )
assert ( is_finite ( to ) )
to < 0 ? [ for ( i = [ 0 : 1 : len ( list ) + to ] ) list [ i ] ] :
to < len ( list ) ? [ for ( i = [ 0 : 1 : to ] ) list [ i ] ] :
list ;
// Function: list_tail()
2023-04-05 00:12:19 +00:00
// Synopsis: Returns the elements at the end of a list.
2021-03-25 07:23:36 +00:00
// Topics: List Handling
// See Also: select(), slice(), list_tail(), last()
2023-03-31 07:20:27 +00:00
// Usage:
// list = list_tail(list, [from]);
2021-03-25 07:23:36 +00:00
// Description:
// Returns the tail of the given list, from the `from` index up until the end of the list, inclusive.
2022-04-07 21:28:41 +00:00
// By default returns all but the first item.
2021-03-25 07:23:36 +00:00
// If the `from` index is negative, then the length of the list is added to it, such that
// `-1` is the last list item. `-2` is the second from last. `-3` is third from last, etc.
// If you want it to return the last three items of the list, use `from=-3`.
// Arguments:
// list = The list to get the tail of.
2022-04-07 21:28:41 +00:00
// from = The first index to include. If negative, adds the list length to it. ie: -1 is the last list item. Default: 1.
2021-09-16 23:33:55 +00:00
// Example:
// tlist1 = list_tail(["foo", "bar", "baz"]); // Returns: ["bar", "baz"]
// tlist2 = list_tail(["foo", "bar", "baz"], -1); // Returns: ["baz"]
// tlist3 = list_tail(["foo", "bar", "baz"], 2); // Returns: ["baz"]
// tlist4 = list_tail(["foo", "bar", "baz"], -5); // Returns: ["foo","bar","baz"]
// tlist5 = list_tail(["foo", "bar", "baz"], 5); // Returns: []
2021-03-25 07:23:36 +00:00
function list_tail ( list , from = 1 ) =
2020-12-13 02:15:33 +00:00
assert ( is_list ( list ) )
2021-03-25 07:23:36 +00:00
assert ( is_finite ( from ) )
from >= 0 ? [ for ( i = [ from : 1 : len ( list ) - 1 ] ) list [ i ] ] :
let ( from = from + len ( list ) )
from >= 0 ? [ for ( i = [ from : 1 : len ( list ) - 1 ] ) list [ i ] ] :
list ;
2020-12-13 02:15:33 +00:00
2021-01-25 07:26:39 +00:00
2021-10-16 03:13:30 +00:00
// Function: bselect()
2023-04-05 00:12:19 +00:00
// Synopsis: Select list items using boolean index list.
2021-10-16 03:13:30 +00:00
// Topics: List Handling
// See Also: list_bset()
2023-03-31 07:20:27 +00:00
// Usage:
// sublist = bselect(list, index);
2021-10-16 03:13:30 +00:00
// Description:
2022-11-02 03:36:52 +00:00
// Returns the items in `list` whose matching element in `index` evaluates as true.
2021-10-16 03:13:30 +00:00
// Arguments:
2022-11-02 03:36:52 +00:00
// list = Initial list (or string) to extract items from.
// index = List of values that will be evaluated as boolean, same length as `list`.
2021-10-16 03:13:30 +00:00
// Example:
// a = bselect([3,4,5,6,7], [false,true,true,false,true]); // Returns: [4,5,7]
2021-11-21 01:29:49 +00:00
function bselect ( list , index ) =
2022-11-02 03:36:52 +00:00
assert ( is_list ( list ) || is_string ( list ) , "First argument must be a list or string." )
assert ( is_list ( index ) && len ( index ) = = len ( list ) , "Second argument must have same length as the first." )
2021-11-21 01:29:49 +00:00
is_string ( list ) ? str_join ( bselect ( [ for ( x = list ) x ] , index ) ) :
2022-11-02 03:36:52 +00:00
[ for ( i = idx ( list ) ) if ( index [ i ] ) list [ i ] ] ;
2021-10-16 03:13:30 +00:00
// Section: List Construction
2020-03-05 04:22:39 +00:00
// Function: repeat()
2023-04-05 00:12:19 +00:00
// Synopsis: Returns a list of repeated copies of a value.
2021-03-02 06:44:00 +00:00
// Topics: List Handling
2021-04-08 03:57:45 +00:00
// See Also: count(), lerpn()
2023-03-31 07:20:27 +00:00
// Usage:
// list = repeat(val, n);
2020-01-10 00:10:18 +00:00
// Description:
2021-11-21 01:29:49 +00:00
// Generates a list of `n` copies of the given value `val`.
2020-01-10 00:10:18 +00:00
// If the count `n` is given as a list of counts, then this creates a
2023-05-15 22:51:37 +00:00
// multi-dimensional array, filled with `val`. If `n` is negative, returns the empty list.
2020-01-10 00:10:18 +00:00
// Arguments:
// val = The value to repeat to make the list or array.
2022-04-07 21:28:41 +00:00
// n = The number of copies to make of `val`. Can be a list to make an array of copies.
2020-01-10 00:10:18 +00:00
// Example:
2021-01-08 03:17:10 +00:00
// a = repeat(1, 4); // Returns [1,1,1,1]
// b = repeat(8, [2,3]); // Returns [[8,8,8], [8,8,8]]
// c = repeat(0, [2,2,3]); // Returns [[[0,0,0],[0,0,0]], [[0,0,0],[0,0,0]]]
// d = repeat([1,2,3],3); // Returns [[1,2,3], [1,2,3], [1,2,3]]
2023-05-15 22:51:37 +00:00
// e = repeat(4, -1); // Returns []
2020-03-05 04:22:39 +00:00
function repeat ( val , n , i = 0 ) =
2020-05-30 02:04:34 +00:00
is_num ( n ) ? [ for ( j = [ 1 : 1 : n ] ) val ] :
2020-07-24 21:54:34 +00:00
assert ( is_list ( n ) , "Invalid count number." )
2020-05-30 02:04:34 +00:00
( i >= len ( n ) ) ? val :
[ for ( j = [ 1 : 1 : n [ i ] ] ) repeat ( val , n , i + 1 ) ] ;
2020-01-10 00:10:18 +00:00
2021-01-25 07:26:39 +00:00
2019-04-20 00:02:17 +00:00
2021-10-16 03:13:30 +00:00
// Function: list_bset()
2023-04-05 00:12:19 +00:00
// Synopsis: Returns a list where values are spread to locations indicated by a boolean index list.
2021-10-16 03:13:30 +00:00
// Topics: List Handling
// See Also: bselect()
2023-03-31 07:20:27 +00:00
// Usage:
// arr = list_bset(indexset, valuelist, [dflt]);
2021-10-16 03:13:30 +00:00
// Description:
// Opposite of `bselect()`. Returns a list the same length as `indexlist`, where each item will
// either be 0 if the corresponding item in `indexset` is false, or the next sequential value
// from `valuelist` if the item is true. The number of `true` values in `indexset` must be equal
// to the length of `valuelist`.
// Arguments:
// indexset = A list of boolean values.
// valuelist = The list of values to set into the returned list.
2022-04-07 21:28:41 +00:00
// dflt = Default value to store when the indexset item is false. Default: 0
2021-10-16 03:13:30 +00:00
// Example:
// a = list_bset([false,true,false,true,false], [3,4]); // Returns: [0,3,0,4,0]
// b = list_bset([false,true,false,true,false], [3,4], dflt=1); // Returns: [1,3,1,4,1]
function list_bset ( indexset , valuelist , dflt = 0 ) =
assert ( is_list ( indexset ) , "The index set is not a list." )
assert ( is_list ( valuelist ) , "The `valuelist` is not a list." )
let ( trueind = search ( [ true ] , indexset , 0 ) [ 0 ] )
assert ( ! ( len ( trueind ) > len ( valuelist ) ) , str ( "List `valuelist` too short; its length should be " , len ( trueind ) ) )
assert ( ! ( len ( trueind ) < len ( valuelist ) ) , str ( "List `valuelist` too long; its length should be " , len ( trueind ) ) )
concat (
list_set ( [ ] , trueind , valuelist , dflt = dflt ) , // Fill in all of the values
repeat ( dflt , len ( indexset ) - max ( trueind ) - 1 ) // Add trailing values so length matches indexset
) ;
2021-10-17 03:01:52 +00:00
// Function: list()
2023-03-31 07:20:27 +00:00
// Synopsis: Expands a range into a full list.
2021-10-17 03:01:52 +00:00
// Topics: List Handling, Type Conversion
2023-03-31 07:20:27 +00:00
// See Also: scalar_vec3(), force_list()
2021-10-17 03:01:52 +00:00
// Usage:
// list = list(l)
// Description:
// Expands a range into a full list. If given a list, returns it verbatim.
// If given a string, explodes it into a list of single letters.
// Arguments:
// l = The value to expand.
// Example:
// l1 = list([3:2:9]); // Returns: [3,5,7,9]
// l2 = list([3,4,5]); // Returns: [3,4,5]
// l3 = list("Foo"); // Returns: ["F","o","o"]
// l4 = list(23); // Returns: [23]
function list ( l ) = is_list ( l ) ? l : [ for ( x = l ) x ] ;
// Function: force_list()
2023-03-31 07:20:27 +00:00
// Synopsis: Coerces non-list values into a list.
2021-10-17 03:01:52 +00:00
// Topics: List Handling
// See Also: scalar_vec3()
2023-03-31 07:20:27 +00:00
// Usage:
// list = force_list(value, [n], [fill]);
2021-10-17 03:01:52 +00:00
// Description:
// Coerces non-list values into a list. Makes it easy to treat a scalar input
// consistently as a singleton list, as well as list inputs.
// - If `value` is a list, then that list is returned verbatim.
// - If `value` is not a list, and `fill` is not given, then a list of `n` copies of `value` will be returned.
// - If `value` is not a list, and `fill` is given, then a list `n` items long will be returned where `value` will be the first item, and the rest will contain the value of `fill`.
// Arguments:
// value = The value or list to coerce into a list.
// n = The number of items in the coerced list. Default: 1
// fill = The value to pad the coerced list with, after the firt value. Default: undef (pad with copies of `value`)
// Example:
// x = force_list([3,4,5]); // Returns: [3,4,5]
// y = force_list(5); // Returns: [5]
// z = force_list(7, n=3); // Returns: [7,7,7]
// w = force_list(4, n=3, fill=1); // Returns: [4,1,1]
function force_list ( value , n = 1 , fill ) =
is_list ( value ) ? value :
is_undef ( fill ) ? [ for ( i = [ 1 : 1 : n ] ) value ] : [ value , for ( i = [ 2 : 1 : n ] ) fill ] ;
2021-10-16 03:13:30 +00:00
// Section: List Modification
2020-01-10 00:10:18 +00:00
2019-04-20 00:02:17 +00:00
// Function: reverse()
2023-04-05 00:12:19 +00:00
// Synopsis: Reverses the elements of a list.
2021-03-02 06:44:00 +00:00
// Topics: List Handling
// See Also: select(), list_rotate()
2023-03-31 07:20:27 +00:00
// Usage:
// rlist = reverse(list);
2021-01-08 03:17:10 +00:00
// Description:
2021-11-21 01:29:49 +00:00
// Reverses a list or string.
2019-04-20 00:02:17 +00:00
// Arguments:
2022-04-07 21:28:41 +00:00
// list = The list or string to reverse.
2019-04-20 00:02:17 +00:00
// Example:
// reverse([3,4,5,6]); // Returns [6,5,4,3]
2022-04-07 21:28:41 +00:00
function reverse ( list ) =
assert ( is_list ( list ) || is_string ( list ) , str ( "Input to reverse must be a list or string. Got: " , list ) )
let ( elems = [ for ( i = [ len ( list ) - 1 : - 1 : 0 ] ) list [ i ] ] )
is_string ( list ) ? str_join ( elems ) : elems ;
2019-10-30 05:42:41 +00:00
// Function: list_rotate()
2023-03-31 07:20:27 +00:00
// Synopsis: Rotates the ordering of a list.
2021-03-02 06:44:00 +00:00
// Topics: List Handling
// See Also: select(), reverse()
2023-03-31 07:20:27 +00:00
// Usage:
// rlist = list_rotate(list, [n]);
2019-10-30 05:42:41 +00:00
// Description:
2021-11-11 23:50:26 +00:00
// Rotates the contents of a list by `n` positions left, so that list[n] becomes the first entry of the list.
2019-10-30 05:42:41 +00:00
// If `n` is negative, then the rotation is `abs(n)` positions to the right.
2020-09-29 02:12:07 +00:00
// If `list` is a string, then a string is returned with the characters rotates within the string.
2019-10-30 05:42:41 +00:00
// Arguments:
// list = The list to rotate.
// n = The number of positions to rotate by. If negative, rotated to the right. Positive rotates to the left. Default: 1
// Example:
// l1 = list_rotate([1,2,3,4,5],-2); // Returns: [4,5,1,2,3]
// l2 = list_rotate([1,2,3,4,5],-1); // Returns: [5,1,2,3,4]
// l3 = list_rotate([1,2,3,4,5],0); // Returns: [1,2,3,4,5]
// l4 = list_rotate([1,2,3,4,5],1); // Returns: [2,3,4,5,1]
// l5 = list_rotate([1,2,3,4,5],2); // Returns: [3,4,5,1,2]
// l6 = list_rotate([1,2,3,4,5],3); // Returns: [4,5,1,2,3]
// l7 = list_rotate([1,2,3,4,5],4); // Returns: [5,1,2,3,4]
// l8 = list_rotate([1,2,3,4,5],5); // Returns: [1,2,3,4,5]
// l9 = list_rotate([1,2,3,4,5],6); // Returns: [2,3,4,5,1]
function list_rotate ( list , n = 1 ) =
2020-07-24 21:54:34 +00:00
assert ( is_list ( list ) || is_string ( list ) , "Invalid list or string." )
2021-04-11 11:37:49 +00:00
assert ( is_int ( n ) , "The rotation number should be integer" )
2021-03-20 08:37:46 +00:00
let (
ll = len ( list ) ,
n = ( ( n % ll ) + ll ) % ll ,
elems = [
for ( i = [ n : 1 : ll - 1 ] ) list [ i ] ,
for ( i = [ 0 : 1 : n - 1 ] ) list [ i ]
]
)
2020-09-29 02:12:07 +00:00
is_string ( list ) ? str_join ( elems ) : elems ;
2019-04-20 00:02:17 +00:00
2021-10-17 03:01:52 +00:00
2019-04-20 00:02:17 +00:00
2021-10-17 03:01:52 +00:00
// Function: shuffle()
2023-04-05 00:12:19 +00:00
// Synopsis: Randomizes the order of a list.
2021-03-02 06:44:00 +00:00
// Topics: List Handling
2021-10-17 03:01:52 +00:00
// See Also: sort(), sortidx(), unique(), unique_count()
2023-03-31 07:20:27 +00:00
// Usage:
// shuffled = shuffle(list, [seed]);
2019-06-17 06:54:44 +00:00
// Description:
2021-10-17 03:01:52 +00:00
// Shuffles the input list into random order.
// If given a string, shuffles the characters within the string.
// If you give a numeric seed value then the permutation
// will be repeatable.
2019-06-17 06:54:44 +00:00
// Arguments:
2021-10-17 03:01:52 +00:00
// list = The list to shuffle.
// seed = Optional random number seed for the shuffling.
2021-09-16 23:33:55 +00:00
// Example:
2021-10-17 03:01:52 +00:00
// // Spades Hearts Diamonds Clubs
// suits = ["\u2660", "\u2661", "\u2662", "\u2663"];
// ranks = [2,3,4,5,6,7,8,9,10,"J","Q","K","A"];
// cards = [for (suit=suits, rank=ranks) str(rank,suit)];
// deck = shuffle(cards);
function shuffle ( list , seed ) =
assert ( is_list ( list ) || is_string ( list ) , "Invalid input." )
is_string ( list ) ? str_join ( shuffle ( [ for ( x = list ) x ] , seed = seed ) ) :
len ( list ) < = 1 ? list :
2020-09-29 02:12:07 +00:00
let (
2021-10-17 03:01:52 +00:00
rval = is_num ( seed ) ? rands ( 0 , 1 , len ( list ) , seed_value = seed )
: rands ( 0 , 1 , len ( list ) ) ,
left = [ for ( i = [ 0 : len ( list ) - 1 ] ) if ( rval [ i ] < 0.5 ) list [ i ] ] ,
right = [ for ( i = [ 0 : len ( list ) - 1 ] ) if ( rval [ i ] >= 0.5 ) list [ i ] ]
)
concat ( shuffle ( left ) , shuffle ( right ) ) ;
2020-07-28 20:51:45 +00:00
2020-03-24 21:51:37 +00:00
2020-07-28 20:51:45 +00:00
2019-12-07 00:27:49 +00:00
// Function: repeat_entries()
2023-04-05 00:12:19 +00:00
// Synopsis: Repeats list entries (as uniformly as possible) to make list of specified length.
2021-03-02 06:44:00 +00:00
// Topics: List Handling
// See Also: repeat()
2023-03-31 07:20:27 +00:00
// Usage:
// newlist = repeat_entries(list, N, [exact]);
2019-12-07 00:27:49 +00:00
// Description:
// Takes a list as input and duplicates some of its entries to produce a list
// with length `N`. If the requested `N` is not a multiple of the list length then
// the entries will be duplicated as uniformly as possible. You can also set `N` to a vector,
// in which case len(N) must equal len(list) and the output repeats the ith entry N[i] times.
// In either case, the result will be a list of length `N`. The `exact` option requires
// that the final length is exactly as requested. If you set it to `false` then the
// algorithm will favor uniformity and the output list may have a different number of
// entries due to rounding.
2020-07-27 22:15:34 +00:00
// .
2019-12-07 00:27:49 +00:00
// When applied to a path the output path is the same geometrical shape but has some vertices
// repeated. This can be useful when you need to align paths with a different number of points.
// (See also subdivide_path for a different way to do that.)
// Arguments:
// list = list whose entries will be repeated
// N = scalar total number of points desired or vector requesting N[i] copies of vertex i.
// exact = if true return exactly the requested number of points, possibly sacrificing uniformity. If false, return uniform points that may not match the number of points requested. Default: True
2021-09-16 23:33:55 +00:00
// Example:
2020-01-24 01:01:41 +00:00
// list = [0,1,2,3];
2021-01-08 03:17:10 +00:00
// a = repeat_entries(list, 6); // Returns: [0,0,1,2,2,3]
// b = repeat_entries(list, 6, exact=false); // Returns: [0,0,1,1,2,2,3,3]
// c = repeat_entries(list, [1,1,2,1], exact=false); // Returns: [0,1,2,2,3]
function repeat_entries ( list , N , exact = true ) =
2020-07-24 21:54:34 +00:00
assert ( is_list ( list ) && len ( list ) > 0 , "The list cannot be void." )
assert ( ( is_finite ( N ) && N > 0 ) || is_vector ( N , len ( list ) ) ,
"Parameter N must be a number greater than zero or vector with the same length of `list`" )
2020-05-30 02:04:34 +00:00
let (
length = len ( list ) ,
2020-07-24 21:54:34 +00:00
reps_guess = is_list ( N ) ? N : repeat ( N / length , length ) ,
reps = exact ?
_sum_preserving_round ( reps_guess )
: [ for ( val = reps_guess ) round ( val ) ]
2020-05-30 02:04:34 +00:00
)
[ for ( i = [ 0 : length - 1 ] ) each repeat ( list [ i ] , reps [ i ] ) ] ;
2020-07-29 05:52:12 +00:00
2021-11-10 03:27:55 +00:00
// Function: list_pad()
2023-04-05 00:12:19 +00:00
// Synopsis: Extend list to specified length.
2021-11-10 03:27:55 +00:00
// Topics: List Handling
// See Also: force_list(), scalar_vec3()
2023-03-31 07:20:27 +00:00
// Usage:
// newlist = list_pad(list, minlen, [fill]);
2021-11-10 03:27:55 +00:00
// Description:
2021-11-21 01:29:49 +00:00
// If the list `list` is shorter than `minlen` length, pad it to length with the value given in `fill`.
2021-11-10 03:27:55 +00:00
// Arguments:
2021-11-21 01:29:49 +00:00
// list = A list.
2021-11-10 03:27:55 +00:00
// minlen = The minimum length to pad the list to.
// fill = The value to pad the list with. Default: `undef`
// Example:
// list = [3,4,5];
// nlist = list_pad(list,5,23); // Returns: [3,4,5,23,23]
2021-11-21 01:29:49 +00:00
function list_pad ( list , minlen , fill ) =
assert ( is_list ( list ) , "Invalid input." )
concat ( list , repeat ( fill , minlen - len ( list ) ) ) ;
2021-11-10 03:27:55 +00:00
2019-06-12 02:26:06 +00:00
// Function: list_set()
2023-03-31 07:20:27 +00:00
// Synopsis: Sets the value of specific list items.
2021-03-02 06:44:00 +00:00
// Topics: List Handling
// See Also: list_insert(), list_remove(), list_remove_values()
2023-03-31 07:20:27 +00:00
// Usage:
// list = list_set(list, indices, values, [dflt], [minlen]);
2019-06-12 02:26:06 +00:00
// Description:
// Takes the input list and returns a new list such that `list[indices[i]] = values[i]` for all of
2020-07-24 21:54:34 +00:00
// the (index,value) pairs supplied and unchanged for other indices. If you supply `indices` that are
2023-05-15 22:51:37 +00:00
// larger that the length of the list then the list is extended and filled in with the `dflt` value.
// If you specify indices smaller than zero then they index from the end, with -1 being the last element.
// Negative indexing does not wrap around: an error occurs if you give a value smaller than `-len(list)`.
2020-07-24 21:54:34 +00:00
// If you set `minlen` then the list is lengthed, if necessary, by padding with `dflt` to that length.
// Repetitions in `indices` are not allowed. The lists `indices` and `values` must have the same length.
// If `indices` is given as a scalar, then that index of the given `list` will be set to the scalar value of `values`.
2019-06-12 02:26:06 +00:00
// Arguments:
2019-06-28 22:26:05 +00:00
// list = List to set items in. Default: []
2019-06-12 02:26:06 +00:00
// indices = List of indices into `list` to set.
// values = List of values to set.
// dflt = Default value to store in sparse skipped indices.
// minlen = Minimum length to expand list to.
2021-09-16 23:33:55 +00:00
// Example:
2021-01-08 03:17:10 +00:00
// a = list_set([2,3,4,5], 2, 21); // Returns: [2,3,21,5]
// b = list_set([2,3,4,5], [1,3], [81,47]); // Returns: [2,81,4,47]
2023-05-15 22:51:37 +00:00
function list_set ( list = [ ] , indices , values , dflt = 0 , minlen = 0 ) =
2020-09-29 02:12:07 +00:00
assert ( is_list ( list ) )
2023-05-15 22:51:37 +00:00
! is_list ( indices ) ?
assert ( is_finite ( indices ) )
let (
index = indices < 0 ? indices + len ( list ) : indices
)
assert ( index >= 0 , str ( "Index " , indices , " is smaller than negative list length" ) )
(
index < len ( list ) ?
[
for ( i = [ 0 : 1 : index - 1 ] ) list [ i ] ,
values ,
for ( i = [ index + 1 : 1 : len ( list ) - 1 ] ) list [ i ] ,
for ( i = [ len ( list ) : 1 : minlen - 1 ] ) dflt
]
: concat ( list , repeat ( dflt , index - len ( list ) ) , [ values ] , repeat ( dflt , minlen - index - 1 ) )
)
: indices = = [ ] && values = = [ ]
2021-01-25 07:26:39 +00:00
? concat ( list , repeat ( dflt , minlen - len ( list ) ) )
2023-05-15 22:51:37 +00:00
: assert ( is_vector ( indices ) && is_list ( values ) && len ( values ) = = len ( indices ) ,
"Index list and value list must have the same length" )
let ( indices = [ for ( ind = indices ) ind < 0 ? ind + len ( list ) : ind ] ,
midx = max ( len ( list ) - 1 , max ( indices ) )
)
assert ( min ( indices ) >= 0 , "Index list contains value smaller than negative list length" )
[
for ( i = [ 0 : 1 : midx ] )
let (
j = search ( i , indices , 0 ) ,
k = j [ 0 ]
)
assert ( len ( j ) < 2 , "Repeated indices are not allowed." )
k ! = undef ? values [ k ]
: i < len ( list ) ? list [ i ]
: dflt ,
each repeat ( dflt , minlen - max ( len ( list ) , max ( indices ) + 1 ) )
] ;
2019-06-12 02:26:06 +00:00
2020-07-29 05:52:12 +00:00
2020-01-10 00:10:18 +00:00
// Function: list_insert()
2023-03-31 07:20:27 +00:00
// Synopsis: Inserts values into the middle of a list.
2021-03-02 06:44:00 +00:00
// Topics: List Handling
// See Also: list_set(), list_remove(), list_remove_values()
2023-03-31 07:20:27 +00:00
// Usage:
// list = list_insert(list, indices, values);
2020-01-10 00:10:18 +00:00
// Description:
2022-04-07 21:28:41 +00:00
// Insert `values` into `list` before position `indices`. The indices for insertion
2023-05-15 22:51:37 +00:00
// are based on the original list, before any insertions have occurred.
// You can use negative indices to count from the end of the list. Note that -1 refers
// to the last element, so the insertion will be *before* the last element.
2022-04-07 21:28:41 +00:00
// Arguments:
// list = list to insert items into
// indices = index or list of indices where values are inserted
// values = value or list of values to insert
2020-01-10 00:10:18 +00:00
// Example:
2021-01-08 03:17:10 +00:00
// a = list_insert([3,6,9,12],1,5); // Returns [3,5,6,9,12]
// b = list_insert([3,6,9,12],[1,3],[5,11]); // Returns [3,5,6,9,11,12]
2020-12-31 14:32:47 +00:00
function list_insert ( list , indices , values ) =
2020-09-29 02:12:07 +00:00
assert ( is_list ( list ) )
2021-01-25 07:26:39 +00:00
! is_list ( indices ) ?
2023-05-15 22:51:37 +00:00
assert ( is_finite ( indices ) , "Invalid indices." )
let ( indices = indices < 0 ? indices + len ( list ) : indices )
assert ( indices >= 0 , "Index is too small, must be >= len(list)" )
2020-07-24 21:54:34 +00:00
assert ( indices < = len ( list ) , "Indices must be <= len(list) ." )
2020-12-31 14:32:47 +00:00
[
for ( i = idx ( list ) ) each ( i = = indices ? [ values , list [ i ] ] : [ list [ i ] ] ) ,
if ( indices = = len ( list ) ) values
2021-01-25 07:26:39 +00:00
] :
indices = = [ ] && values = = [ ] ? list :
assert ( is_vector ( indices ) && is_list ( values ) && len ( values ) = = len ( indices ) ,
"Index list and value list must have the same length" )
assert ( max ( indices ) < = len ( list ) , "Indices must be <= len(list)." )
let (
2023-05-15 22:51:37 +00:00
indices = [ for ( ind = indices ) ind < 0 ? ind + len ( list ) : ind ] ,
2021-01-25 07:26:39 +00:00
maxidx = max ( indices ) ,
minidx = min ( indices )
2023-05-15 22:51:37 +00:00
)
assert ( minidx >= 0 , "Index list contains values that are too small" )
assert ( maxidx < = len ( list ) , "Index list contains values that are too large" )
[
2021-01-25 07:26:39 +00:00
for ( i = [ 0 : 1 : minidx - 1 ] ) list [ i ] ,
for ( i = [ minidx : min ( maxidx , len ( list ) - 1 ) ] )
let (
j = search ( i , indices , 0 ) ,
k = j [ 0 ] ,
x = assert ( len ( j ) < 2 , "Repeated indices are not allowed." )
) each ( k ! = undef ? [ values [ k ] , list [ i ] ] : [ list [ i ] ] ) ,
for ( i = [ min ( maxidx , len ( list ) - 1 ) + 1 : 1 : len ( list ) - 1 ] ) list [ i ] ,
if ( maxidx = = len ( list ) ) values [ max_index ( indices ) ]
] ;
2020-07-24 21:54:34 +00:00
2019-04-20 00:02:17 +00:00
// Function: list_remove()
2023-04-05 00:12:19 +00:00
// Synopsis: Removes items by index from a list.
2021-03-02 06:44:00 +00:00
// Topics: List Handling
// See Also: list_set(), list_insert(), list_remove_values()
2023-03-31 07:20:27 +00:00
// Usage:
// list = list_remove(list, ind);
2019-04-20 00:02:17 +00:00
// Description:
2021-10-28 00:21:12 +00:00
// If `ind` is a number remove `list[ind]` from the list. If `ind` is a list of indices
// remove from the list the item all items whose indices appear in `ind`. If you give
// indices that are not in the list they are ignored.
2019-04-20 00:02:17 +00:00
// Arguments:
// list = The list to remove items from.
2021-10-28 00:21:12 +00:00
// ind = index or list of indices of items to remove.
// Example:
// a = list_remove([3,6,9,12],1); // Returns: [3,9,12]
// b = list_remove([3,6,9,12],[1,3]); // Returns: [3,9]
// c = list_remove([3,6],3); // Returns: [3,6]
function list_remove ( list , ind ) =
assert ( is_list ( list ) , "Invalid list in list_remove" )
is_finite ( ind ) ?
(
( ind < 0 || ind >= len ( list ) ) ? list
:
[
for ( i = [ 0 : 1 : ind - 1 ] ) list [ i ] ,
for ( i = [ ind + 1 : 1 : len ( list ) - 1 ] ) list [ i ]
]
)
: ind = = [ ] ? list
: assert ( is_vector ( ind ) , "Invalid index list in list_remove" )
let ( sres = search ( count ( list ) , ind , 1 ) )
2020-07-30 05:39:17 +00:00
[
2021-10-29 00:23:16 +00:00
for ( i = idx ( list ) )
2021-10-28 00:21:12 +00:00
if ( sres [ i ] = = [ ] )
list [ i ]
] ;
// This method is faster for long lists with few values to remove
// let( rem = list_set([], indices, repeat(1,len(indices)), minlen=len(list)))
// [for(i=idx(list)) if (rem[i]==0) list[i]];
2020-07-24 21:54:34 +00:00
2020-07-28 20:51:45 +00:00
2019-10-21 09:28:45 +00:00
// Function: list_remove_values()
2023-04-05 00:12:19 +00:00
// Synopsis: Removes items by value from a list.
2021-03-02 06:44:00 +00:00
// Topics: List Handling
// See Also: list_set(), list_insert(), list_remove()
2023-03-31 07:20:27 +00:00
// Usage:
// list = list_remove_values(list, values, [all]);
2019-10-21 09:28:45 +00:00
// Description:
2021-10-29 00:23:16 +00:00
// Removes the first, or all instances of the given value or list of values from the list.
// If you specify `all=false` and list a value twice then the first two instances will be removed.
// Note that if you want to remove a list value such as `[3,4]` then you must give it as
// a singleton list, or it will be interpreted as a list of two scalars to remove.
2019-10-21 09:28:45 +00:00
// Arguments:
// list = The list to modify.
2021-10-29 00:23:16 +00:00
// values = The value or list of values to remove from the list.
2019-10-21 09:28:45 +00:00
// all = If true, remove all instances of the value `value` from the list `list`. If false, remove only the first. Default: false
// Example:
2021-10-29 00:23:16 +00:00
// test = [3,4,[5,6],7,5,[5,6],4,[6,5],7,[4,4]];
// a=list_remove_values(test,4); // Returns: [3, [5, 6], 7, 5, [5, 6], 4, [6, 5], 7, [4, 4]]
// b=list_remove_values(test,[4,4]); // Returns: [3, [5, 6], 7, 5, [5, 6], [6, 5], 7, [4, 4]]
// c=list_remove_values(test,[4,7]); // Returns: [3, [5, 6], 5, [5, 6], 4, [6, 5], 7, [4, 4]]
// d=list_remove_values(test,[5,6]); // Returns: [3, 4, [5, 6], 7, [5, 6], 4, [6, 5], 7, [4, 4]]
// e=list_remove_values(test,[[5,6]]); // Returns: [3,4,7,5,[5,6],4,[6,5],7,[4,4]]
// f=list_remove_values(test,[[5,6]],all=true); // Returns: [3,4,7,5,4,[6,5],7,[4,4]]
2019-10-21 09:28:45 +00:00
// animals = ["bat", "cat", "rat", "dog", "bat", "rat"];
// animals2 = list_remove_values(animals, "rat"); // Returns: ["bat","cat","dog","bat","rat"]
// nonflying = list_remove_values(animals, "bat", all=true); // Returns: ["cat","rat","dog","rat"]
// animals3 = list_remove_values(animals, ["bat","rat"]); // Returns: ["cat","dog","bat","rat"]
// domestic = list_remove_values(animals, ["bat","rat"], all=true); // Returns: ["cat","dog"]
// animals4 = list_remove_values(animals, ["tucan","rat"], all=true); // Returns: ["bat","cat","dog","bat"]
function list_remove_values ( list , values = [ ] , all = false ) =
2020-05-30 02:04:34 +00:00
! is_list ( values ) ? list_remove_values ( list , values = [ values ] , all = all ) :
2021-10-29 00:23:16 +00:00
assert ( is_list ( list ) , "Invalid list" )
len ( values ) = = 0 ? list :
len ( values ) = = 1 ?
(
! all ?
(
let ( firsthit = search ( values , list , 1 ) [ 0 ] )
firsthit = = [ ] ? list
: list [ firsthit ] = = values [ 0 ] ? list_remove ( list , firsthit )
: let ( allhits = search ( values , list , 0 ) [ 0 ] ,
allind = [ for ( i = allhits ) if ( list [ i ] = = values [ 0 ] ) i ]
)
allind = = [ ] ? list : list_remove ( list , min ( allind ) )
)
:
(
let ( allhits = search ( values , list , 0 ) [ 0 ] ,
allind = [ for ( i = allhits ) if ( list [ i ] = = values [ 0 ] ) i ]
)
allind = = [ ] ? list : list_remove ( list , allind )
)
)
: ! all ? list_remove_values ( list_remove_values ( list , values [ 0 ] , all = all ) , list_tail ( values ) , all = all )
:
[
for ( i = idx ( list ) )
let ( hit = search ( [ list [ i ] ] , values , 0 ) [ 0 ] )
if ( hit = = [ ] ) list [ i ]
else
let ( check = [ for ( j = hit ) if ( values [ j ] = = list [ i ] ) 1 ] )
if ( check = = [ ] ) list [ i ]
] ;
2019-10-21 09:28:45 +00:00
2020-07-28 20:51:45 +00:00
2019-04-20 00:02:17 +00:00
2023-03-03 03:54:39 +00:00
// Section: List Iteration Index Helper
2019-04-20 00:02:17 +00:00
2020-01-10 00:10:18 +00:00
// Function: idx()
2023-03-31 07:20:27 +00:00
// Synopsis: Returns a range useful for iterating over a list.
// Topics: List Handling, Iteration
// See Also: count()
2020-01-09 04:43:19 +00:00
// Usage:
2023-03-05 17:11:30 +00:00
// range = idx(list, [s=], [e=], [step=]);
2021-06-27 03:59:33 +00:00
// for(i=idx(list, [s=], [e=], [step=])) ...
2020-01-09 04:43:19 +00:00
// Description:
2023-03-05 17:11:30 +00:00
// Returns the range that gives the indices for a given list. This makes is a little bit
// easier to loop over a list by index, when you need the index numbers and looping of list values isn't enough.
// Note that the return is a **range** not a list.
2020-01-09 04:43:19 +00:00
// Arguments:
2020-01-10 00:10:18 +00:00
// list = The list to returns the index range of.
2022-04-07 21:28:41 +00:00
// ---
2021-01-25 07:26:39 +00:00
// s = The starting index. Default: 0
// e = The delta from the end of the list. Default: -1 (end of list)
2020-01-10 00:10:18 +00:00
// step = The step size to stride through the list. Default: 1
// Example(2D):
// colors = ["red", "green", "blue"];
// for (i=idx(colors)) right(20*i) color(colors[i]) circle(d=10);
2021-01-25 07:26:39 +00:00
function idx ( list , s = 0 , e = - 1 , step = 1 ) =
2020-07-24 21:54:34 +00:00
assert ( is_list ( list ) || is_string ( list ) , "Invalid input." )
2021-01-25 07:26:39 +00:00
let ( ll = len ( list ) )
2021-01-25 07:51:52 +00:00
ll = = 0 ? [ 0 : 1 : ll - 1 ] :
2021-01-25 07:26:39 +00:00
let (
_s = posmod ( s , ll ) ,
_e = posmod ( e , ll )
) [ _s : step : _e ] ;
2020-01-09 04:43:19 +00:00
2023-03-03 03:54:39 +00:00
// Section: Lists of Subsets
2020-01-09 04:43:19 +00:00
2019-05-10 09:33:44 +00:00
// Function: pair()
2023-04-05 00:12:19 +00:00
// Synopsis: Returns a list of overlapping consecutive pairs in a list.
2023-03-31 07:20:27 +00:00
// Topics: List Handling, Iteration
// See Also: idx(), triplet(), combinations(), permutations()
2019-04-20 00:02:17 +00:00
// Usage:
2021-06-27 03:59:33 +00:00
// p = pair(list, [wrap]);
// for (p = pair(list, [wrap])) ... // On each iteration, p contains a list of two adjacent items.
2019-05-10 09:33:44 +00:00
// Description:
2022-01-07 19:23:01 +00:00
// Returns a list of all of the pairs of adjacent items from a list, optionally wrapping back to the front. The pairs overlap, and
// are returned in order starting with the first two entries in the list. If the list has less than two elements, the empty list is returned.
2021-01-25 07:26:39 +00:00
// Arguments:
2022-01-07 19:23:01 +00:00
// list = The list to use for making pairs
2021-01-25 07:26:39 +00:00
// wrap = If true, wrap back to the start from the end. ie: return the last and first items as the last pair. Default: false
// Example(2D): Does NOT wrap from end to start,
// for (p = pair(circle(d=40, $fn=12)))
// stroke(p, endcap2="arrow2");
// Example(2D): Wraps around from end to start.
// for (p = pair(circle(d=40, $fn=12), wrap=true))
// stroke(p, endcap2="arrow2");
2019-05-10 09:33:44 +00:00
// Example:
2020-07-03 22:22:21 +00:00
// l = ["A","B","C","D"];
2019-05-10 09:33:44 +00:00
// echo([for (p=pair(l)) str(p.y,p.x)]); // Outputs: ["BA", "CB", "DC"]
2021-01-25 07:26:39 +00:00
function pair ( list , wrap = false ) =
assert ( is_list ( list ) || is_string ( list ) , "Invalid input." )
assert ( is_bool ( wrap ) )
2021-11-04 02:30:01 +00:00
let ( L = len ( list ) - 1 )
L < 1 ? [ ] :
[
for ( i = [ 0 : 1 : L - 1 ] ) [ list [ i ] , list [ i + 1 ] ] ,
if ( wrap ) [ list [ L ] , list [ 0 ] ]
] ;
2019-05-10 09:33:44 +00:00
2019-06-19 08:31:44 +00:00
// Function: triplet()
2023-04-05 00:12:19 +00:00
// Synopsis: Returns a list of overlapping consecutive triplets in a list.
2023-03-31 07:20:27 +00:00
// Topics: List Handling, Iteration
// See Also: idx(), pair(), combinations(), permutations()
2019-06-19 08:31:44 +00:00
// Usage:
2021-06-27 03:59:33 +00:00
// list = triplet(list, [wrap]);
// for (t = triplet(list, [wrap])) ...
2019-06-19 08:31:44 +00:00
// Description:
2022-01-07 19:23:01 +00:00
// Returns a list of all adjacent triplets from a list, optionally wrapping back to the front.
2021-11-01 22:14:31 +00:00
// If you set `wrap` to true then the first triplet is the one centered on the first list element, so it includes
// the last element and the first two elements. If the list has fewer than three elements then the empty list is returned.
// Arguments:
// list = list to produce triplets from
// wrap = if true, wrap triplets around the list. Default: false
// Example:
// list = [0,1,2,3,4];
// a = triplet(list); // Returns [[0,1,2],[1,2,3],[2,3,4]]
// b = triplet(list,wrap=true); // Returns [[4,0,1],[0,1,2],[1,2,3],[2,3,4],[3,4,0]]
// letters = ["A","B","C","D","E"];
// [for (p=triplet(letters)) str(p.z,p.y,p.x)]; // Returns: ["CBA", "DCB", "EDC"]
2021-01-25 07:26:39 +00:00
// Example(2D):
// path = [for (i=[0:24]) polar_to_xy(i*2, i*360/12)];
// for (t = triplet(path)) {
// a = t[0]; b = t[1]; c = t[2];
// v = unit(unit(a-b) + unit(c-b));
// translate(b) rot(from=FWD,to=v) anchor_arrow2d();
// }
// stroke(path);
function triplet ( list , wrap = false ) =
assert ( is_list ( list ) || is_string ( list ) , "Invalid input." )
assert ( is_bool ( wrap ) )
2021-11-01 22:14:31 +00:00
let ( L = len ( list ) )
2021-11-04 02:30:01 +00:00
L < 3 ? [ ] :
2021-11-01 22:14:31 +00:00
[
if ( wrap ) [ list [ L - 1 ] , list [ 0 ] , list [ 1 ] ] ,
for ( i = [ 0 : 1 : L - 3 ] ) [ list [ i ] , list [ i + 1 ] , list [ i + 2 ] ] ,
if ( wrap ) [ list [ L - 2 ] , list [ L - 1 ] , list [ 0 ] ]
2021-11-07 22:53:53 +00:00
] ;
2019-06-19 08:31:44 +00:00
2021-03-10 22:49:39 +00:00
// Function: combinations()
2023-04-05 00:12:19 +00:00
// Synopsis: Returns a list of all combinations of the list entries.
2021-03-02 06:44:00 +00:00
// Topics: List Handling, Iteration
2021-11-19 00:02:50 +00:00
// See Also: idx(), pair(), triplet(), permutations()
2023-03-31 07:20:27 +00:00
// Usage:
// list = combinations(l, [n]);
2020-01-09 04:43:19 +00:00
// Description:
2021-09-09 22:32:58 +00:00
// Returns a list of all of the (unordered) combinations of `n` items out of the given list `l`.
2020-01-09 04:43:19 +00:00
// For the list `[1,2,3,4]`, with `n=2`, this will return `[[1,2], [1,3], [1,4], [2,3], [2,4], [3,4]]`.
// For the list `[1,2,3,4]`, with `n=3`, this will return `[[1,2,3], [1,2,4], [1,3,4], [2,3,4]]`.
// Arguments:
// l = The list to provide permutations for.
2022-04-07 21:28:41 +00:00
// n = The number of items in each combination. Default: 2
2020-01-09 04:43:19 +00:00
// Example:
2021-03-10 22:49:39 +00:00
// pairs = combinations([3,4,5,6]); // Returns: [[3,4],[3,5],[3,6],[4,5],[4,6],[5,6]]
// triplets = combinations([3,4,5,6],n=3); // Returns: [[3,4,5],[3,4,6],[3,5,6],[4,5,6]]
2020-01-09 04:43:19 +00:00
// Example(2D):
2021-03-10 22:49:39 +00:00
// for (p=combinations(regular_ngon(n=7,d=100))) stroke(p);
function combinations ( l , n = 2 , _s = 0 ) =
2020-07-24 21:54:34 +00:00
assert ( is_list ( l ) , "Invalid list." )
assert ( is_finite ( n ) && n >= 1 && n < = len ( l ) , "Invalid number `n`." )
n = = 1
2021-01-08 03:17:10 +00:00
? [ for ( i = [ _s : 1 : len ( l ) - 1 ] ) [ l [ i ] ] ]
2021-03-10 22:49:39 +00:00
: [ for ( i = [ _s : 1 : len ( l ) - n ] , p = combinations ( l , n = n - 1 , _s = i + 1 ) ) concat ( [ l [ i ] ] , p ) ] ;
2021-11-19 00:02:50 +00:00
2021-03-10 22:49:39 +00:00
// Function: permutations()
2023-04-05 00:12:19 +00:00
// Synopsis: Returns a list of all permutations of the list entries.
2021-03-10 22:49:39 +00:00
// Topics: List Handling, Iteration
2021-11-19 00:02:50 +00:00
// See Also: idx(), pair(), triplet(), combinations()
2023-03-31 07:20:27 +00:00
// Usage:
// list = permutations(l, [n]);
2021-03-10 22:49:39 +00:00
// Description:
2021-09-09 22:32:58 +00:00
// Returns a list of all of the (ordered) permutation `n` items out of the given list `l`.
// For the list `[1,2,3]`, with `n=2`, this will return `[[1,2],[1,3],[2,1],[2,3],[3,1],[3,2]]`
// For the list `[1,2,3]`, with `n=3`, this will return `[[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]]`
2021-03-10 22:49:39 +00:00
// Arguments:
// l = The list to provide permutations for.
// n = The number of items in each permutation. Default: 2
// Example:
2021-09-09 22:32:58 +00:00
// pairs = permutations([3,4,5,6]); // // Returns: [[3,4],[3,5],[3,6],[4,3],[4,5],[4,6],[5,3],[5,4],[5,6],[6,3],[6,4],[6,5]]
2021-03-10 22:49:39 +00:00
function permutations ( l , n = 2 ) =
assert ( is_list ( l ) , "Invalid list." )
assert ( is_finite ( n ) && n >= 1 && n < = len ( l ) , "Invalid number `n`." )
n = = 1
? [ for ( i = [ 0 : 1 : len ( l ) - 1 ] ) [ l [ i ] ] ]
: [ for ( i = idx ( l ) , p = permutations ( [ for ( j = idx ( l ) ) if ( i ! = j ) l [ j ] ] , n = n - 1 ) ) concat ( [ l [ i ] ] , p ) ] ;
2020-03-31 06:09:20 +00:00
2022-03-28 03:06:42 +00:00
// Section: Changing List Structure
2020-07-28 20:51:45 +00:00
2020-03-31 06:09:20 +00:00
2021-10-27 03:12:51 +00:00
// Function: list_to_matrix()
2023-03-31 07:20:27 +00:00
// Synopsis: Groups items in a list into sublists.
// Topics: Matrices, List Handling
// See Also: column(), submatrix(), hstack(), flatten(), full_flatten()
2021-01-08 03:17:10 +00:00
// Usage:
2021-11-21 01:29:49 +00:00
// groups = list_to_matrix(v, cnt, [dflt]);
2019-04-20 00:02:17 +00:00
// Description:
2021-11-21 01:29:49 +00:00
// Takes a flat list of values, and groups items in sets of `cnt` length.
2019-04-20 00:02:17 +00:00
// The opposite of this is `flatten()`.
// Arguments:
// v = The list of items to group.
2021-11-21 01:29:49 +00:00
// cnt = The number of items to put in each grouping.
// dflt = The default value to fill in with if the list is not a multiple of `cnt` items long. Default: undef
2019-04-20 00:02:17 +00:00
// Example:
// v = [1,2,3,4,5,6];
2023-03-09 05:54:27 +00:00
// a = list_to_matrix(v,2) // returns [[1,2], [3,4], [5,6]]
// b = list_to_matrix(v,3) // returns [[1,2,3], [4,5,6]]
// c = list_to_matrix(v,4,0) // returns [[1,2,3,4], [5,6,0,0]]
2021-11-21 01:29:49 +00:00
function list_to_matrix ( v , cnt , dflt = undef ) =
2021-01-08 03:17:10 +00:00
[ for ( i = [ 0 : cnt : len ( v ) - 1 ] ) [ for ( j = [ 0 : 1 : cnt - 1 ] ) default ( v [ i + j ] , dflt ) ] ] ;
2019-04-20 00:02:17 +00:00
2021-07-01 00:05:44 +00:00
2019-04-20 00:02:17 +00:00
// Function: flatten()
2023-03-31 07:20:27 +00:00
// Synopsis: Flattens a list of sublists into a single list.
2021-11-21 01:29:49 +00:00
// Topics: Matrices, List Handling
2021-10-26 20:45:14 +00:00
// See Also: column(), submatrix(), hstack(), full_flatten()
2023-03-31 07:20:27 +00:00
// Usage:
// list = flatten(l);
2021-01-08 03:17:10 +00:00
// Description:
// Takes a list of lists and flattens it by one level.
2019-04-20 00:02:17 +00:00
// Arguments:
// l = List to flatten.
// Example:
2021-01-08 03:17:10 +00:00
// l = flatten([[1,2,3], [4,5,[6,7,8]]]); // returns [1,2,3,4,5,[6,7,8]]
2021-01-25 07:26:39 +00:00
function flatten ( l ) =
! is_list ( l ) ? l :
[ for ( a = l ) if ( is_list ( a ) ) ( each a ) else a ] ;
2019-04-20 00:02:17 +00:00
2020-07-28 18:02:35 +00:00
// Function: full_flatten()
2023-03-31 07:20:27 +00:00
// Synopsis: Recursively flattens nested sublists into a single list of non-list values.
2021-11-21 01:29:49 +00:00
// Topics: Matrices, List Handling
2021-10-26 20:45:14 +00:00
// See Also: column(), submatrix(), hstack(), flatten()
2023-03-31 07:20:27 +00:00
// Usage:
// list = full_flatten(l);
2020-07-28 18:02:35 +00:00
// Description:
// Collects in a list all elements recursively found in any level of the given list.
// The output list is ordered in depth first order.
// Arguments:
// l = List to flatten.
// Example:
2021-01-08 03:17:10 +00:00
// l = full_flatten([[1,2,3], [4,5,[6,7,8]]]); // returns [1,2,3,4,5,6,7,8]
2021-01-25 07:26:39 +00:00
function full_flatten ( l ) =
! is_list ( l ) ? l :
[ for ( a = l ) if ( is_list ( a ) ) ( each full_flatten ( a ) ) else a ] ;
2020-07-28 18:02:35 +00:00
2019-04-20 00:02:17 +00:00
2021-10-27 03:12:51 +00:00
// Section: Set Manipulation
// Function: set_union()
2023-03-31 07:20:27 +00:00
// Synopsis: Merges two lists, returning a list of unique items.
2021-10-27 03:12:51 +00:00
// Topics: Set Handling, List Handling
// See Also: set_difference(), set_intersection()
2023-03-31 07:20:27 +00:00
// Usage:
// s = set_union(a, b, [get_indices]);
2021-10-27 03:12:51 +00:00
// Description:
// Given two sets (lists with unique items), returns the set of unique items that are in either `a` or `b`.
// If `get_indices` is true, a list of indices into the new union set are returned for each item in `b`,
// in addition to returning the new union set. In this case, a 2-item list is returned, `[INDICES, NEWSET]`,
// where INDICES is the list of indices for items in `b`, and NEWSET is the new union set.
// Arguments:
// a = One of the two sets to merge.
// b = The other of the two sets to merge.
// get_indices = If true, indices into the new union set are also returned for each item in `b`. Returns `[INDICES, NEWSET]`. Default: false
// Example:
// set_a = [2,3,5,7,11];
// set_b = [1,2,3,5,8];
// set_u = set_union(set_a, set_b);
// // set_u now equals [2,3,5,7,11,1,8]
// set_v = set_union(set_a, set_b, get_indices=true);
// // set_v now equals [[5,0,1,2,6], [2,3,5,7,11,1,8]]
function set_union ( a , b , get_indices = false ) =
assert ( is_list ( a ) && is_list ( b ) , "Invalid sets." )
let (
found1 = search ( b , a ) ,
found2 = search ( b , b ) ,
c = [ for ( i = idx ( b ) )
if ( found1 [ i ] = = [ ] && found2 [ i ] = = i )
b [ i ]
] ,
nset = concat ( a , c )
)
! get_indices ? nset :
let (
la = len ( a ) ,
found3 = search ( b , c ) ,
idxs = [ for ( i = idx ( b ) )
( found1 [ i ] ! = [ ] ) ? found1 [ i ] : la + found3 [ i ]
]
) [ idxs , nset ] ;
// Function: set_difference()
2023-03-31 07:20:27 +00:00
// Synopsis: Returns a list of unique items that are in list A, but not in list B.
2021-10-27 03:12:51 +00:00
// Topics: Set Handling, List Handling
// See Also: set_union(), set_intersection()
2023-03-31 07:20:27 +00:00
// Usage:
// s = set_difference(a, b);
2021-10-27 03:12:51 +00:00
// Description:
// Given two sets (lists with unique items), returns the set of items that are in `a`, but not `b`.
// Arguments:
// a = The starting set.
// b = The set of items to remove from set `a`.
// Example:
// set_a = [2,3,5,7,11];
// set_b = [1,2,3,5,8];
// set_d = set_difference(set_a, set_b);
// // set_d now equals [7,11]
function set_difference ( a , b ) =
assert ( is_list ( a ) && is_list ( b ) , "Invalid sets." )
let ( found = search ( a , b , num_returns_per_match = 1 ) )
[ for ( i = idx ( a ) ) if ( found [ i ] = = [ ] ) a [ i ] ] ;
// Function: set_intersection()
2023-03-31 07:20:27 +00:00
// Synopsis: Returns a list of unique items that are in both given lists.
2021-10-27 03:12:51 +00:00
// Topics: Set Handling, List Handling
// See Also: set_union(), set_difference()
2023-03-31 07:20:27 +00:00
// Usage:
// s = set_intersection(a, b);
2021-10-27 03:12:51 +00:00
// Description:
// Given two sets (lists with unique items), returns the set of items that are in both sets.
// Arguments:
// a = The starting set.
// b = The set of items to intersect with set `a`.
// Example:
// set_a = [2,3,5,7,11];
// set_b = [1,2,3,5,8];
// set_i = set_intersection(set_a, set_b);
// // set_i now equals [2,3,5]
function set_intersection ( a , b ) =
assert ( is_list ( a ) && is_list ( b ) , "Invalid sets." )
let ( found = search ( a , b , num_returns_per_match = 1 ) )
[ for ( i = idx ( a ) ) if ( found [ i ] ! = [ ] ) a [ i ] ] ;
2020-05-30 02:04:34 +00:00
// vim: expandtab tabstop=4 shiftwidth=4 softtabstop=4 nowrap