Search Options

Results per page
Sort
Preferred Languages
Advance

Results 521 - 523 of 523 for rotated (0.21 sec)

  1. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `That's right!' shouted the Queen.  `Can you play croquet?'
    
      The soldiers were silent, and looked at Alice, as the question
    was evidently meant for her.
    
      `Yes!' shouted Alice.
    
      `Come on, then!' roared the Queen, and Alice joined the
    procession, wondering very much what would happen next.
    
      `It's--it's a very fine day!' said a timid voice at her side.
    She was walking by the White Rabbit, who was peeping anxiously
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    constants</a>. Its value is the index of the respective <a href="#ConstSpec">ConstSpec</a>
    in that constant declaration, starting at zero.
    It can be used to construct a set of related constants:
    </p>
    
    <pre>
    const (
    	c0 = iota  // c0 == 0
    	c1 = iota  // c1 == 1
    	c2 = iota  // c2 == 2
    )
    
    const (
    	a = 1 &lt;&lt; iota  // a == 1  (iota == 0)
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 10 18:25:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. doc/go_spec.html

    constants</a>. Its value is the index of the respective <a href="#ConstSpec">ConstSpec</a>
    in that constant declaration, starting at zero.
    It can be used to construct a set of related constants:
    </p>
    
    <pre>
    const (
    	c0 = iota  // c0 == 0
    	c1 = iota  // c1 == 1
    	c2 = iota  // c2 == 2
    )
    
    const (
    	a = 1 &lt;&lt; iota  // a == 1  (iota == 0)
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Oct 02 00:58:01 UTC 2024
    - 282.5K bytes
    - Viewed (0)
Back to top