presence_in(another_object)
Instance Public methods
Returns the receiver if it's included in the argument otherwise returns
nil
. Argument must be any object which responds to
#include?
. Usage:
params[:bucket_type].presence_in %w( project calendar )
This will throw an ArgumentError if the argument doesn't respond to
#include?
.
@return [Object]
Please login to continue.