Skip to content

LittleDict / OrderedDict pop! consistency #61

Open
@mattBrzezinski

Description

@mattBrzezinski

@iamed2 pointed this out in #59, here. We do not have consistency between the pop! function for LittleDict and OrderedDict.

LittleDict

Will return nothing if the key is not found.

function Base.pop!(dd::UnfrozenLittleDict, key)
@assert length(dd.keys) == length(dd.vals)
for ii in 1:length(dd.keys)
cand = @inbounds dd.keys[ii]
if isequal(cand, key)
deleteat!(dd.keys, ii)
val = @inbounds dd.vals[ii]
deleteat!(dd.vals, ii)
return val
end
end
end

OrderedDict

Will throw a KeyError if the key is not found.

function pop!(h::OrderedDict, key)
index = ht_keyindex(h, key, false)
index > 0 ? _pop!(h, index) : throw(KeyError(key))
end

I propose that we make the following changes:

  1. Have LittleDict throw a KeyError when the key is not found.
  2. Introduce a new function which provides a default value to return if key DNE (LittleDict pop! default #59)

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions