Documentation Index
Fetch the complete documentation index at: https://takeprofit.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Sorted collections library.
Types
SortedList
type
List that holds values in sorted order.
Methods
Class constructor (initializer for the data type).
lst
indie.Optional[list[float]]
default:None
List to get values from.
Adds given value to the list.
New value that will be put to the list.
Removes given value from the list.
Value that will be removed from the list
Returns list element at given index.
Index of an element in the list.
Method __getitem__ should never be called directly, instead list_obj[key] syntax should be used.
Returns the length (the number of items) of a list.
Method __len__ should never be called directly, instead len(list_obj) syntax should be used.
Returns True if the list contains the given value, otherwise False.
Element to find in the list.
Method __contains__ should never be called directly, instead val in lst syntax should be used.