Division of self with i

Property definitions

core $ Numeric :: /
	# Division of `self` with `i`
	fun /(i: OTHER): OTHER is abstract
lib/core/kernel.nit:449,2--450,35

core $ UInt32 :: /
	redef fun /(i) is intern
lib/core/fixed_ints.nit:613,2--25

core $ Int8 :: /
	redef fun /(i) is intern
lib/core/fixed_ints.nit:129,2--25

core $ Int16 :: /
	redef fun /(i) is intern
lib/core/fixed_ints.nit:250,2--25

core $ UInt16 :: /
	redef fun /(i) is intern
lib/core/fixed_ints.nit:371,2--25

core $ Int32 :: /
	redef fun /(i) is intern
lib/core/fixed_ints.nit:492,2--25

gmp $ Ratio :: /
    #     assert(3.to_r / 2.to_r == "3/2".to_r)
    redef fun /(r) do
        var res = new NativeMPQ
        val.div(res, r.val)
        return new Ratio(res)
    end
lib/gmp/gmp.nit:348,5--353,7

core $ Byte :: /
	redef fun /(i) is intern
lib/core/kernel.nit:631,2--25

core $ Float :: /
	redef fun /(i) is intern
lib/core/kernel.nit:538,2--25

gmp $ BigInt :: /
    #     assert(3.to_bi / 2.to_bi == 1.to_bi)
    redef fun /(i) do
        var res = new NativeMPZ
        val.tdiv_q(res, i.val)
        return new BigInt(res)
    end
lib/gmp/gmp.nit:181,5--186,7

core $ Int :: /
	redef fun /(i) is intern
lib/core/kernel.nit:728,2--25