Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for scientist (0.1 sec)

  1. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"scarf":                                "\U0001f9e3",
    	"school":                               "\U0001f3eb",
    	"school_satchel":                       "\U0001f392",
    	"scientist":                            "\U0001f9d1\u200d\U0001f52c",
    	"scissors":                             "\u2702\ufe0f",
    	"scorpion":                             "\U0001f982",
    	"scorpius":                             "\u264f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  2. src/math/big/int.go

    //
    // QuoRem implements T-division and modulus (like Go):
    //
    //	q = x/y      with the result truncated to zero
    //	r = x - y*q
    //
    // (See Daan Leijen, “Division and Modulus for Computer Scientists”.)
    // See DivMod for Euclidean division and modulus (unlike Go).
    func (z *Int) QuoRem(x, y, r *Int) (*Int, *Int) {
    	z.abs, r.abs = z.abs.div(r.abs, x.abs, y.abs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top