ixfx
    Preparing search index...

    Type Alias StackDiscardPolicy

    StackDiscardPolicy: "older" | "newer" | "additions"

    Policies for discarding items when the stack is full and new items are added.

    • 'older': Older items are discarded first, and then pushed items added
    • 'newer': Newer items are discarded first, and then pushed items added
    • 'additions': Rather than remove from the stack, we remove from the set of items being pushed. This acts as an 'overflow' kind of logic.