Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for mojo (0.22 sec)

  1. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	MOVO (BX), X2                           // 660f6f13
    	MOVO (R11), X2                          // 66410f6f13
    	MOVO X2, X2                             // 660f6fd2 or 660f7fd2
    	MOVO X11, X2                            // 66410f6fd3 or 66440f7fda
    	MOVO (BX), X11                          // 66440f6f1b
    	MOVO (R11), X11                         // 66450f6f1b
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 08 21:38:44 GMT 2021
    - 581.9K bytes
    - Viewed (0)
  2. src/bytes/example_test.go

    	fmt.Printf("%s\n", bytes.Replace([]byte("oink oink oink"), []byte("oink"), []byte("moo"), -1))
    	// Output:
    	// oinky oinky oink
    	// moo moo moo
    }
    
    func ExampleReplaceAll() {
    	fmt.Printf("%s\n", bytes.ReplaceAll([]byte("oink oink oink"), []byte("oink"), []byte("moo")))
    	// Output:
    	// moo moo moo
    }
    
    func ExampleRunes() {
    	rs := bytes.Runes([]byte("go gopher"))
    	for _, r := range rs {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Mar 04 15:54:40 GMT 2024
    - 15K bytes
    - Viewed (1)
Back to top