protocol
_NSDictionaryType
Inheritance |
_NSCopyingType, _NSDictionaryCoreType, _NSFastEnumerationType, _ShadowProtocol
View Protocol Hierarchy →
|
---|---|
Import |
|
Initializers
Declaration
init
(
objects
:
UnsafePointer
<
AnyObject
?
>
,
forKeys
:
UnsafePointer
<
Void
>
,
count
:
Int
)
Declared In
_NSDictionaryCoreType
1 inherited item hidden. (Show all)
Instance Variables
1 inherited item hidden. (Show all)
Instance Methods
Declaration
func
copyWithZone
(
zone
:
_SwiftNSZone
) -
>
AnyObject
Declared In
_NSCopyingType
, _NSDictionaryCoreType
Declaration
func
countByEnumeratingWithState
(
state
:
UnsafeMutablePointer
<
_SwiftNSFastEnumerationState
>
,
objects
:
UnsafeMutablePointer
<
AnyObject
>
,
count
:
Int
) -
>
Int
Declared In
_NSDictionaryCoreType
, _NSFastEnumerationType
Declaration
func
getObjects
(
objects
:
UnsafeMutablePointer
<
AnyObject
>
,
andKeys
keys
:
UnsafeMutablePointer
<
AnyObject
>
)
Declared In
_NSDictionaryType
, _NSDictionaryCoreType
4 inherited items hidden. (Show all)
A shadow for the API of
NSDictionary
we will use in the core stdlib.NSDictionary
operations, in addition to those on_NSDictionaryCoreType
, that we need to use from the core stdlib. Distinct from_NSDictionaryCoreType
because we don't want to be forced to implement operations thatNSDictionary
already supplies.