Bins of unused numbers

Hi,
How can i define coverage for bins i didn’t declare?

EX : coverpoint five_vector
{ bins one = {5’d1};
bins three = {5’d3};
i want to declare for all bins but 1,3_____;}

In reply to oglick:

If you don’t mind the overlap, you can write:

 coverpoint vector {
    bins one = {5'd1}; 
    bins three = {5'd3};
    bins unused[] = {[0:$]};
  }

Otherwise the more explicit solution is using the with clause

coverpoint vector {
    bins one = {5'd1}; 
    bins three = {5'd3};
    bins unused[] = {[0:$]} with (item != 1 && item != 3);
  }