method

eql?

v1_9_3_392 - Show latest stable - Class: OpenSSL::BN
eql?(p1)
public

No documentation available.

static VALUE
ossl_bn_eql(VALUE self, VALUE other)
{
    if (ossl_bn_cmp(self, other) == INT2FIX(0)) {
        return Qtrue;
    }
    return Qfalse;
}