Package-level declarations

Types

Link copied to clipboard
class CapacityOverflowException(message: String = "Overflow of collection with fixed capacity") : RuntimeException

Represents exception that is thrown when user tries to overflow a data structure with fixed capacity.

Link copied to clipboard
Link copied to clipboard
class DetachedNodeException(message: String = "The node is already detached, so the operation is undefined in that case.") : IllegalStateException

Represents exception that is thrown when user tries to change detached node's properties.

Link copied to clipboard
interface Disposable

Represents disposable structure that is optimised for GC when is disposed.

Link copied to clipboard
class DisposedInstanceException(message: String = "The object is already disposed, so the operation is undefined in that case.") : IllegalStateException

Represents exception that is thrown when user tries to use disposed object.

Link copied to clipboard
class ElementAccessInEmptyCollectionException(message: String = "Cannot access the element of the empty collection") : NoSuchElementException
Link copied to clipboard
class EmptyDequeAccessException(message: String = "There is no elements in empty deque") : NoSuchElementException
Link copied to clipboard
class NoCorrespondingNodeException(message: String = "There is no corresponding node") : NoSuchElementException

Represents exception that is thrown when user tries to get some nodded data structure's node that matches given conditions but there is no such element.

Link copied to clipboard
class NoElementMatchingThePredicateException(message: String = "There is no element matching the predicate.") : NoSuchElementException

Represents exception that is thrown when user tries to get element that matches the provided predicate but there is no such element.

Link copied to clipboard
class NoFollowingElementInIteratorException(message: String = "There is no following element in the iterator") : NoSuchElementException

Represents exception that is thrown when user tries to get, set, remove, or bypass the next or the previous non-existent element.

Link copied to clipboard
class NoMatchingKeyException(message: String = "There is no value for requested key") : NoSuchElementException

Represents exception that is thrown when user tries to get some KoneMap instance's element that matches the provided key but there is no such element.

Properties

Functions

Link copied to clipboard

Throws CapacityOverflowException with message including provided capacity.

Link copied to clipboard
fun detachedNodeException(message: String = "The node is already detached, so the operation is undefined in that case."): Nothing

Throws DetachedNodeException with the provided message describing that the node is already detached and doesn't support used operation.

Link copied to clipboard
fun disposedInstanceException(message: String = "The object is already disposed, so the operation is undefined in that case."): Nothing

Throws DisposedInstanceException with the provided message describing that the object is already disposed and doesn't support used operation.

Link copied to clipboard

Throws IndexOutOfBoundsException with message including provided index and size.

Link copied to clipboard
fun noCorrespondingNodeException(message: String = "There is no corresponding node"): Nothing
Link copied to clipboard
fun noElementMatchingThePredicateException(message: String = "There is no element matching the predicate."): Nothing

Throws NoElementMatchingThePredicateException with the provided message describing that there is no element matching the predicate.

Link copied to clipboard

Throws NoMatchingKeyException with message including provided key.

Link copied to clipboard
fun noNextElementInIteratorException(message: String = "There is no next element in the iterator"): Nothing

Throws NoFollowingElementInIteratorException with the provided message describing that there is no next element.

Link copied to clipboard
fun noPreviousElementInIteratorException(message: String = "There is no previous element in the iterator"): Nothing

Throws NoFollowingElementInIteratorException with the provided message describing that there is no previous element.