Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Map_types (0.28 sec)

  1. doc/go1.17_spec.html

    type Bad interface {
    	Bad
    }
    
    // illegal: Bad1 cannot embed itself using Bad2
    type Bad1 interface {
    	Bad2
    }
    type Bad2 interface {
    	Bad1
    }
    </pre>
    
    <h3 id="Map_types">Map types</h3>
    
    <p>
    A map is an unordered group of elements of one type, called the
    element type, indexed by a set of unique <i>keys</i> of another type,
    called the key type.
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 10 18:25:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  2. doc/go_spec.html

    	type set of <code>I</code>.
    </li>
    </ul>
    
    <p>
    A value of type <code>T</code> implements an interface if <code>T</code>
    implements the interface.
    </p>
    
    <h3 id="Map_types">Map types</h3>
    
    <p>
    A map is an unordered group of elements of one type, called the
    element type, indexed by a set of unique <i>keys</i> of another type,
    called the key type.
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Oct 02 00:58:01 UTC 2024
    - 282.5K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg syscall (linux-386), const MAP_PRIVATE ideal-int
    pkg syscall (linux-386), const MAP_SHARED ideal-int
    pkg syscall (linux-386), const MAP_STACK ideal-int
    pkg syscall (linux-386), const MAP_TYPE ideal-int
    pkg syscall (linux-386), const MCL_CURRENT ideal-int
    pkg syscall (linux-386), const MCL_FUTURE ideal-int
    pkg syscall (linux-386), const MNT_DETACH ideal-int
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg syscall (linux-386), const MAP_PRIVATE = 2
    pkg syscall (linux-386), const MAP_SHARED = 1
    pkg syscall (linux-386), const MAP_STACK = 131072
    pkg syscall (linux-386), const MAP_TYPE = 15
    pkg syscall (linux-386), const MCL_CURRENT = 1
    pkg syscall (linux-386), const MCL_FUTURE = 2
    pkg syscall (linux-386), const MNT_DETACH = 2
    pkg syscall (linux-386), const MNT_EXPIRE = 4
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
  5. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const MAP_POPULATE ideal-int
    pkg syscall (linux-arm-cgo), const MAP_PRIVATE ideal-int
    pkg syscall (linux-arm-cgo), const MAP_SHARED ideal-int
    pkg syscall (linux-arm-cgo), const MAP_TYPE ideal-int
    pkg syscall (linux-arm-cgo), const MCL_CURRENT ideal-int
    pkg syscall (linux-arm-cgo), const MCL_FUTURE ideal-int
    pkg syscall (linux-arm-cgo), const MNT_DETACH ideal-int
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Oct 18 04:36:59 UTC 2013
    - 1.9M bytes
    - Viewed (0)
Back to top