Short description
A powerful list utilities extension to work with lists with multiple functions.
Pictures of all the blocks
Instructions to use extension
Use this block to sort a given list alphabetically. It also considers integers and sort in natural sorting order.
Use this block to sort given list of integers in increasing order. No matter the list item is a single digit or multiple digit. It also supports negative values.
Reverses the given list.
Search in a given list with a specific keyword and get all items containing the given keyword. Useful for filtering list or making search system.
Shuffles the given list.
Returns duplicate items as a list.
GetOccurrences block will return the count of item in a list (how many times it is in the list) and index block will return the indices of these items.
Get integer list from 1 to given n
Get minimum and maximum number from a given integer list.
Get last list item
Converts a given list into JSON string.
Compare given two lists and returns true if matches else false.
Returns a new list containing the union of two lists (combines the elements from both input lists, removing any duplicates).
Returns a new list containing the distinct (unique) elements from the given list.
Returns a new list containing the intersection of two lists (a new list containing the common elements present in both input lists).
Returns a slice (part) of the given list from the start index (inclusive) to the end index (exclusive).
Returns a list of all permutations of the given list
Returns a list of possible combinations of elements from the given list and combination size.
RemoveItems from start index to end index and return filtered list.
Download
ListUtilz.aix (15.3 KB)