( sort )

Legend
Has corresponding code
No direct match, but an alternative exists
No corresponding code
-TODO
( .. )Not localized
Example Python
pytest
C++
GoogleTest
Swift
Testing
Kotlin
jUnit
Bash
bats
( sorted ) sorted - - - -
( sort_in_place ) sort - - - -
( sort_reversed ) sorted(items, reverse=True) - - - -
( reversed ) reversed - - - -
( sorted_by_col_index ) itemgetter - - - -
( sorted_by_dict_key ) itemgetter - - - -
( sorted_by_class_member ) attrgetter - - - -
( sorted_by_multiple_keys ) itemgetter or tuple - - - -
( sort_by_custom_func ) - - - -
( sort_func_helper ) cmp(a, b) is not available in Python 3. - - - -
( sort_with_natural_order ) - - - -
( shuffle ) random.shuffle(items) - - - -
( example_insert_into_sorted_list ) bisect.insort - - - -