defget_perdiem(city: nil,state: nil,zip:nil)caseparameters_match# (return an object of the parameters we can pattern match on)in{zip: zip}find_perdiem_by_zip(zip)in{state: s,city: c}find_perdiem_by_state_and_city(s,c)in{state: s}find_perdiem_by_state(s)elseraise'need combination of zip, city,state'endend
defgetParam(**args)caseargsin{zip: zip}p"zip"in{state: s,city: c}p"state+city"in{state: s}p"state"elseraise'need combination of zip, city, state'endend
def get_param(name, city: nil, state:nil, zip: nil, &error)
case parameters_match
in [String, String, String , String, Proc]
puts 'all method types matched against'
in [String, nil, String, nil,nil]
puts 'only city and state matched'
end
end
I don't only want to match on keywords. I want to use an object to make it easy ruby methods like multimethods
this is even more problematic because ruby doesn't know which parameter should be at which position there
it may not know which param you want at which in your in comparison, especially if you mix key args with non key args
You can still use args for this
defget_param(name,**args,&error)caseargsin{city: String,state: String,zip: String}puts'all method types matched against'in{city: String,state: String}puts'only city and state matched'endend
the parameters method returns the name in order. I know ruby doesn't do it yet, this is a feature request to add a
method like the parameters argument that could be pattern matched against.
I think there was a proposal for a similar concept, "rest keywords including all keywords", but can't find it now.
I believe you're talking about #15049. In #16253 there was also brief talk of making argument forwarding work like that so we could use Hash[...], but unfortunately that option was not retained.
But in this particular case I think it wouldn't work anyway; let's say you use get_perdiem(state: 'CA') then I would expect parameters_match to return all parameters including their default values like {city: nil, state: 'CA', zip:nil}. And that would match in {zip: zip} unlike what the OP intends. Or use parameters_match.compact like Hanmac suggests.