Discord.SortedSet.slice
You're seeing just the function
slice, go back to Discord.SortedSet module for more information.
Specs
slice(set :: t(), start :: non_neg_integer(), amount :: non_neg_integer()) :: [Discord.SortedSet.Types.supported_term()] | Discord.SortedSet.Types.common_errors()
Retrieves a slice of the SortedSet starting at the specified index and including up to the specified amount.
slice/3 will return an empty list if the start index is out of bounds. If the amount
exceeds the number of items from the start index to the end of the set then all terms up to the
end of the set will be returned. This means that the length of the list returned by slice will
fall into the range of [0, amount]