Classes available in other languages written in wren
- Queue
- Set
- Stack
Algorithms available in class Algorithm
- none_of(list, predicate): return
trueifpredicatereturnstruefor no elements oflist. - equal(list1, list2): return
trueiflist1andlist2have the same elements in the same order. - equal(list1, list2, predicate): return
trueifpredicate.call(list1[i], list2[i])returnstruefor alli. - generate(value, size): return a list of
sizeelements all beingvalue. - remove(list, value): remove all occurences of
valueinlist. - remove_if(list, predicate): remove all values of
listwherepredicatereturnstrue. - reverse(list): reverse the order of the elements of
list. - unique(list): remove consecutive duplicates in
list. - min(list): return the minimum element of
list. - max(list): return the maximum element of
list.