Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for MulZZ (0.02 sec)

  1. src/math/big/int_test.go

    		testFunZZ(t, "SubZZ symmetric", SubZZ, arg)
    	}
    }
    
    func TestProdZZ(t *testing.T) {
    	MulZZ := func(z, x, y *Int) *Int { return z.Mul(x, y) }
    	for _, a := range prodZZ {
    		arg := a
    		testFunZZ(t, "MulZZ", MulZZ, arg)
    
    		arg = argZZ{a.z, a.y, a.x}
    		testFunZZ(t, "MulZZ symmetric", MulZZ, arg)
    	}
    }
    
    // mulBytes returns x*y via grade school multiplication. Both inputs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
Back to top