EvictedStrategy

public enum EvictedStrategy

Eviction strategy applied when enqueuing into a full list.

  • Evict from the back (least-recent). This is the standard LRU behavior.

    Declaration

    Swift

    case FIFO
  • Do not evict; reject the insertion by returning the provided node. Useful when callers prefer to drop newcomers instead of evicting residents.

    Declaration

    Swift

    case LIFO