Method: Subnets::Net4#hash
- Defined in:
- ext/subnets/ext.c
#hash ⇒ Integer
713 714 715 716 717 718 |
# File 'ext/subnets/ext.c', line 713
VALUE
method_net4_hash(VALUE self) {
net4_t *net;
Data_Get_Struct(self, net4_t, net);
return xor(hash(INT2FIX(net->prefixlen)), hash(UINT2NUM(net->address)));
}
|