Package org.jheaps.annotations


package org.jheaps.annotations
Annotation types
  • Annotation Interfaces
    Class
    Description
    Marker interface to indicate that a public API may change or be removed in the future.
    Marker interface to indicate that an operation takes constant time.
    Marker interface to indicate that an operation takes O(n) time where n is the size of the input.
    Marker interface to indicate that an operation takes O(log(n)) time where n is the size of the input.
    Marker interface to indicate that an operation takes O(loglog(n)) time where n is the size of the input.
    Marker interface to indicate that something is visible as package-private only for testing purposes.