Sha256: 71a87a3a3b8fdcffd61115080dc757a81582dd1164902bc8efc3fd8a73f79aba
Contents?: true
Size: 1.51 KB
Versions: 12
Compression:
Stored size: 1.51 KB
Contents
o:$YARD::CodeObjects::MethodObject:@scope: instance:@visibility:public: @pathI" Bignum#%:EF:@parameters[:@files[[I" bignum.c;T0:@current_file_has_commentsF: @name:%:@source_type:c: @tags[:@docstringIC:YARD::Docstring"GReturns big modulo other. See Numeric.divmod for more information.;F:@objectIu:YARD::StubProxy Bignum#%;F: @summary0:@ref_tags[;[o:YARD::Tags::OverloadTag :@tag_nameI" overload;F: @text0;;:@types0:@signatureI" %(other);F;IC;";F;Iu; Bignum#%;F;0;[;[o:YARD::Tags::Tag ;I"return;F;I";F;0;[I"Numeric;F;0: @allI"@return [Numeric];F;[[: other0;Iu; Bignum#%;Fo; ;I" overload;F;0;:modulo;0;I"modulo(other);F;IC;";F;Iu; Bignum#%;F;0;[;[o; ;I"return;F;I";F;0;[I"Numeric;F;0; I"@return [Numeric];F;[[;!0;Iu; Bignum#%;F; I"�Returns big modulo other. See Numeric.divmod for more information. @overload %(other) @return [Numeric] @overload modulo(other) @return [Numeric];F:@namespaceIu;Bignum;F:@docstring_extra0:@sourceI"�/* * call-seq: * big % other -> Numeric * big.modulo(other) -> Numeric * * Returns big modulo other. See Numeric.divmod for more * information. */ VALUE rb_big_modulo(VALUE x, VALUE y) { VALUE z; switch (TYPE(y)) { case T_FIXNUM: y = rb_int2big(FIX2LONG(y)); break; case T_BIGNUM: break; default: return rb_num_coerce_bin(x, y, '%'); } bigdivmod(x, y, 0, &z); return bignorm(z); };F
Version data entries
12 entries across 12 versions & 2 rubygems